Hi all,
We are using sharpscript to build message templates in markdown and render them to HTML.
In those we need to add some blank line breaks.
Given this example template:
Hi // adding two blank spaces
We want to use Sharpscript // adding two blank spaces
Greetings // adding two blank spaces
Peter
This should render to:
<p>Hi</p>
<br />
<p>We want to use Sharpscript</p>
<br />
<p>Greetings</p>
<p>Peter</p>
But actually it renders this:
<p>Hi </p>
<p>We want to use Sharpscript </p>
<p>Greetings<br />
Peter</p>
So how can we achieve a pure blank new line?
In the link below it’s written that a new line creates a blank in the rendered code.
Best regards for your help.