newline_ to_ br
string | newline_to_br
returns string
Converts newlines (\n
) in a string to HTML line breaks (<br>
).
{{ product.description | newline_to_br }}
{{ product.description | newline_to_br }}
{
"product": {
"description": "<h3>Are you low on health? Well we've got the potion just for you!</h3>\n<p>Just need a top up? Almost dead? In between? No need to worry because we have a range of sizes and strengths!</p>"
}
}
Output
<h3>Are you low on health? Well we've got the potion just for you!</h3><br />
<p>Just need a top up? Almost dead? In between? No need to worry because we have a range of sizes and strengths!</p>
Was this page helpful?