executablebooks / MyST-Parser

An extended commonmark compliant parser, with bridges to docutils/sphinx

Home Page:https://myst-parser.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing newline from doc

mrx23dot opened this issue · comments

Describe the gap in the current documentation

Doc doesn't say how to add newline
https://myst-parser.readthedocs.io/en/latest/search.html?q=newline

Adding backslash didn't work

##subtitle
* entry
* entry
\
\
\
* entry
* entry

adding HTML also didn't work
<br>

not sure what should work.

Describe the solution you'd like

No response

Thanks for opening your first issue here! Engagement like this is essential for open source projects! 🤗

If you haven't done so already, check out EBP's Code of Conduct. Also, please try to follow the issue template as it helps other community members to contribute more effectively.

If your issue is a feature request, others may react to it, to raise its prominence (see Feature Voting).

Welcome to the EBP community! 🎉

## COMMON_STEPS
* test 1
\
\
\
* test 2
* test 3

produces
image

<li><p>test 1
<br />
<br />
\</p></li>
<li><p>test 2</p></li>
<li><p>test 3</p></li>

not 3 line breaks

Fare enough, thanks