When I use a Markdown linebreak (two spaces at end of line), I can’t manage to create a new <p> tag, instead getting <br>s after each line in a single <p> tag.
Hello.--
Can I be indented?
returns
<p>Hello.<br>Can I be indented?</p>
I’m trying to just indent every Markdown line, so if any other methods can be used, that’d be nice to know as well. (AFAIK I can’t indent after a <br>)
Any help is appreciated!