theme-tools icon indicating copy to clipboard operation
theme-tools copied to clipboard

Avoid line break between consequent variables

Open gavar opened this issue 3 years ago • 0 comments

Describe the bug The plugin breaks the line between consequent variables if there is nothing in between.

Unformatted source

Hello {{ FirstName }} and {{ LastName }}

Hello {{ FirstName }} {{ LastName }}

Expected output

Hello {{ FirstName }} and {{ LastName }}

Hello {{ FirstName }} {{ LastName }}

Actual output

Hello {{ FirstName }} and {{ LastName }}

Hello {{ FirstName }}
{{ LastName }}

Debugging information

  • https://shopify.github.io/prettier-plugin-liquid
  • Version 1.0.2

gavar avatar Jan 04 '23 02:01 gavar