Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 534 Bytes

File metadata and controls

20 lines (17 loc) · 534 Bytes

Improve MustacheStatement printing (#7157 by @dcyriller)

{{!-- input --}}
<p>Hi here is your name, as it will be displayed  {{firstName}}  {{lastName}}   , welcome!</p>

{{!-- stable --}}
<p>
  Hi here is your name, as it will be displayed {{firstName}} {{lastName
  }} , welcome!
</p>

{{!-- master --}}
<p>
  Hi here is your name, as it will be displayed {{firstName}} {{
    lastName
  }} , welcome!
</p>