We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I have and example:
## First 1. 13123 2. qwd ## Second
as my MD
I am getting: h2( "First", ), ol( li( "13123", ), li( "qwd", ), ), h2( "Second", ),
h2( "First", ), ol( li( "13123", ), li( "qwd", ), ), h2( "Second", ),
I am expecting to see breaking line between "h2" elements and the list. MD converter is ignoring empty lines.
The text was updated successfully, but these errors were encountered:
Maybe param from "marked" which is keeping the "breakes" could solve it? Or give the possibility to pass the arguments to marked.
Sorry, something went wrong.
I don't think line breaks are necessary in this case as <h2>, <ol> and <li> are displayed as block elements: https://developer.mozilla.org/en-US/docs/Web/CSS/display.
<h2>
<ol>
<li>
block
Hmm right. But by md docs "two empty lines are working as a html element". Isn't it?
No branches or pull requests
Hello,
I have and example:
as my MD
I am getting:
h2( "First", ), ol( li( "13123", ), li( "qwd", ), ), h2( "Second", ),
I am expecting to see breaking line between "h2" elements and the list. MD converter is ignoring empty lines.
The text was updated successfully, but these errors were encountered: