prettier-plugin-astro
prettier-plugin-astro copied to clipboard
🐛 BUG: Prettier-ignore comment doesn't work with astro files
Describe the Bug
The <!-- prettier-ignore --> comment doesn't work in .astro files. Prettier continues to format the content.

But this same code works in a normal HTML file. Prettier respects the comment.
Steps to Reproduce
-
npm init astrousing empty project - Put the following code inside the
index.astrofile.
<!-- prettier-ignore -->
<div class="content-block">
Paragraph
Paragraph
## Header
Paragraph
</div>
- Format the document.