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
* An entry:
The first paragraphThe second paragraphThe third paragraph
This should create a description list, where the entry has thee paragraphs. This works fine in roff output, but falls down in HTML output. The following HTML is produced:
<dl><dt>An entry</dt><dd> The first paragraph
<p>The second paragraph</p><p>The third paragraph</p></dd></dl>
Note that the first paragraph is not set off with a <p> tag. As such, the break between the first and second paragraph is not rendered. The following should be produced instead:
<dl><dt>An entry</dt><dd><p>The first paragraph</p><p>The second paragraph</p><p>The third paragraph</p></dd></dl>
The text was updated successfully, but these errors were encountered:
Take the following ronn input:
This should create a description list, where the entry has thee paragraphs. This works fine in roff output, but falls down in HTML output. The following HTML is produced:
Note that the first paragraph is not set off with a
<p>
tag. As such, the break between the first and second paragraph is not rendered. The following should be produced instead:The text was updated successfully, but these errors were encountered: