trivago / prettier-plugin-twig-melody

Code formatting plugin for Prettier which can handle Twig/Melody templates
Apache License 2.0
155 stars 35 forks source link

Should not add whitespace between `<!--` and `#` #54

Open urbantrout opened 4 years ago

urbantrout commented 4 years ago

Input:

<!--# if expr="$HTTP_COOKIE=/critical\-css\={{ cssHash }}/" -->
…
<!--# else -->
…
<!--# endif -->

Expected output:

<!--# if expr="$HTTP_COOKIE=/critical\-css\={{ cssHash }}/" -->
…
<!--# else -->
…
<!--# endif -->

Actual output:

<!-- # if expr="$HTTP_COOKIE=/critical\-css\={{ cssHash }}/" -->
…
<!-- # else -->
…
<!-- # endif -->