You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, It looks like a list with one item that has multiple paragraphs can generate incorrect HTML. Specifically, multiple p elements aren't generated. Here is an example:
This is a list of one instruction that sets incorrectly.
1. First instruction.
Longer paragraph that expands upon the first instruction.
This is a list of two instructions that sets OK.
1. First instruction.
Longer paragraph that expands upon the short text.
2. Second instruction.
Those are all the instructions.
This is the HTML output:
<p>This is a list of one instruction that sets incorrectly.</p>
<ol>
<li>First instruction.
Longer paragraph that expands upon the first instruction.</li>
</ol>
<p>This is a list of two instructions that sets OK.</p>
<ol>
<li><p>First instruction.</p>
<p>Longer paragraph that expands upon the short text.</p></li>
<li><p>Second instruction.</p></li>
</ol>
<p>Those are all the instructions.</p>
Cheers, Jim
The text was updated successfully, but these errors were encountered:
Hi, It looks like a list with one item that has multiple paragraphs can generate incorrect HTML. Specifically, multiple p elements aren't generated. Here is an example:
Cheers, Jim
The text was updated successfully, but these errors were encountered: