I would like to insert a single blank line between my bullet elements. However, I'm having a hard time making this work in pandoc markdown.
I'm using pandoc -f markdown -t html my_doc.md
to perform the conversion.
Right now, I have something like:
* Lorem
* ipsum
* Dolor
* sit amet
This produces something like in Stackoverflow markdown, where the blank lines are ignored:
Lorem
- ipsum
Dolor
- sit amet
In order to get a line break between Lorem and Dolor, I put a <br>
. However, this produces 3 blank lines:
* Lorem
* ipsum
<br>
* Dolor
* sit amet
But that looks like this:
- Lorem
- ipsum
- Dolor
- sit amet
How to I get a single blank line between my top-level (or whatever level) bullet elements?