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

Bug: String concatenation #20

Closed chasegiunta closed 4 years ago

chasegiunta commented 4 years ago

{% include 'foo/' ~ bar %} will output: {% include ''foo/' ~ bar' %} (singleQuotes true) {% include ""foo/" ~ bar" %} (singleQuotes false)

twbartel commented 4 years ago

Nice find, thanks! Just fixed it in master, will release later.

twbartel commented 4 years ago

Released as part of v0.2.2. Can you check?

chasegiunta commented 4 years ago

Seems to be working great! Thanks!