Bindings currently auto-escape code to make it formatted the same way it is in the input. You can use {{ raw attrs.XYZ }} in the binding if you want, though that opens you up to xss attacks.
In some cases it is useful not to use this behaviour, for example:
<:Body>
<:item-description title="This is a title where the first few words are forced to always stay on the same paragraph and not be ugly.">Lorem ipsum dolor ist amet</:item-description>
<:Item_description>
<h3> {{ attrs.title }} </h3>
<p> {{ yield }} </p> {{ #text body }}
Bindings currently auto-escape code to make it formatted the same way it is in the input. You can use
{{ raw attrs.XYZ }}
in the binding if you want, though that opens you up to xss attacks.In some cases it is useful not to use this behaviour, for example: