Sharpscript & Line Breaks

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.

The generated markdown is controlled by the registered Markdown implementation used, not #Script.

If you want to force additional HTML you can just add it to your Markdown, e.g:

Hi // adding two blank spaces

We want to use Sharpscript // adding two blank spaces
<br>
Greetings // adding two blank spaces
Peter

Otherwise you can use an Alternative Markdown Implementation like Markdig which is a more complete implementation of the CommonMark spec.