Shopify / prettier-plugin-liquid

Prettier Liquid/HTML plugin
https://npm.im/@shopify/prettier-plugin-liquid
MIT License
93 stars 15 forks source link

Correct smart quotes into dumb quotes inside HTML attributes and Liquid #130

Closed charlespwd closed 1 year ago

charlespwd commented 1 year ago

Describe the bug Copy pasted smart quotes break HTML.

Unformatted source

<h1 class=“section-header__title h2”>

Expected output

<h1 class="section-header__title h2">

Actual output

LiquidHTMLParsingError

Additional context I think the correct course of action here would be to allow to parse those and reprint them with smart quotes. I can't think of a reason why you wouldn't want that...