Shopify / prettier-plugin-liquid

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

Parse smart quotes as dumb quotes to prevent formatted copy pasting errors #136

Closed charlespwd closed 1 year ago

charlespwd commented 1 year ago

e.g. parse the following as though the quotes were the correct ones

<h1 class=“section-header__title h2” id=‘abc’></h1>

and reprint as dumb quotes

<h1 class="section-header__title h2" id="abc"></h1>

Fixes #130