ZURB电子邮件基金会 - 保留传递数据的换行符

Im currently trying to create a ZURB Foundation for Emails template where I pass some external data. The data passed is a long terms of conditions text with different paragraphs. Unfortunately I am not able to perserve the line breaks.

code example:

<columns>
 <p class="terms">{{{{raw}}}}{{ $terms }}{{{{/raw}}}}</p>
</columns>

I've tried the following with no result

  • Removing the {{{{raw}}}} inclosure
  • Replacing the data passed to use <br/> instead of
  • Adding css-style: white-space: pre-wrap;

Is there another type of 'helper' where I can pass data which will be rendered as HTML ?