I have a simple text expansion in my template like so:
<td>{{ someMethodHere() }}</td>
and I want the string that's returned from someMethodHere
to include a line-break. I've tried including both \n
and <br/>
in the returned string but neither is actually evaluated in the resulting HTML.
What's the trick to this?