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
Hi,
If you put
- something - another thing
you get <li><p>something</p></li> Can you convert lists without paragraph mark instead when it's needed.
<li><p>something</p></li>
The text was updated successfully, but these errors were encountered:
I'm also having problems with lists and <p> tags
<p>
This
* One * Two * Three * Four * Five
gives me
<ul> <li>One</li> <li>Two <ul> <li>Three</li> </ul></li> <li>Four</li> <li>Five</li> </ul>
but if I add one newline between
I get this
<ul> <li><p>One</p></li> <li><p>Two</p> <ul> <li>Three</li> </ul></li> <li><p>Four</p></li> <li><p>Five</p></li> </ul>
Adding another newline removes the <p> tags again
Sorry, something went wrong.
<p> must put only when you have more than one line. Ex:
* One * Two This is another line. It has 4 spaces * Three
Should get:
... <li><p>Two</p><p>This is another line. It has 4 spaces</p></li> <li>Three</li> ...
No branches or pull requests
Hi,
If you put
you get
<li><p>something</p></li>
Can you convert lists without paragraph mark instead when it's needed.
The text was updated successfully, but these errors were encountered: