IF HTML tag contains a string interpolation
AND last character of the line passes column 128
Prettier formats the line "in an unexpected" way.
E.G.
<!-- note: lines have 4 tabs (spaces) indentation before -->
{{ ' ' | raw }} - {{ ' ' | raw }} <time datetime="{{ formCheckOutDate.raw }}">{{ formCheckOutDate.formatted }}</time>
<!-- or -->
<span>Very long text content to make the line pass col 128</span> <span>{{ "Very long string to make the line pass col 128" }}</span>
Formatted code:
{{ ' ' | raw }} - {{ ' ' | raw }} <time datetime="{{ formCheckOutDate.raw }}">
{{ formCheckOutDate.formatted }}
</time>
<span>Very long text content to make the line pass col 128</span> <span>{{
'Very long string to make the line pass col 128'
}}</span>
IF HTML tag contains a string interpolation AND last character of the line passes column 128
Prettier formats the line "in an unexpected" way.
E.G.
Formatted code:
Is that the expected output?