If I add an empty line between items in a bulleted list it doesn't show up

Hi, if add an empty line between items in a bulleted list it doesn’t show up.
Please see image:

Am I doing something wrong?
Coming from a culture of mono window/column editor (aka WYSIWYG) I’m a bit struggling here =)
Thanks!

This is standard markdown behaviour. I like markdown but I often question behaviour like this. To get the line break that you’re looking for you’ll need to use an html <br> tag. e.g

- item 1
- item 2

<br>

- item 3
1 Like