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
If no items in a list are separated by a blank line, the <p> tags around text content should be omitted:
<p>
- Item 1 - Item 2
should give
<ul> <li>Item 1</li> <li>Item 2</li> </ul>
Unlike
which gives
<ul> <li><p>Item 1</p> </li> <li><p>Item 2</p> </li> </ul>
The blank line may occur anywhere in the list and affects all items, even those before it:
- Item 1 - Item 2 - ... - Item 100 - Item 101
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If no items in a list are separated by a blank line, the
<p>
tags around text content should be omitted:should give
Unlike
which gives
The blank line may occur anywhere in the list and affects all items, even those before it:
The text was updated successfully, but these errors were encountered: