Printing with line-breaks

What I’m trying to do

I am trying to print a document (imported from Evernote) that consists in bullet points line breaks and more bullet points.

Things I have tried

The plugin “Print v0.5.4” prints only the bullets points one after another, ignoring line breaks where they appear. The note looks Ok on the screen, on Evernote too.
Please help.

It’s not a problem with the plugin; it’s just the way of markdown. They’re called “loose lists”.

All of your blank lines are visible in the editing views so you can see what you’ve typed. They don’t render in markdown in the context you’re talking about—between list items. When you switch to Reading view, the spacing should look similar to what gets printed—in your case, no blanks lines.

Some ways to break up loose lists (or give the appearance of having done so):

Insert a blank Obsidian comment:

- a

%% %%
- b

Insert a blank HTML comment:

- c

<!-- -->
- d

Insert an HTML break tag:

- e
<br>
- f

Use CSS to add space between all list items.

Use CSS to selectively add space via classes or containers.

Use a converting tool for document types or layouts.

Ah, saw that you got a better suggestion from CawlinTeffid on OMG. Adding it here for future seekers.

Alternate list markers:

- a
- b

* c
* d

+ e
+ f