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
{{ message }}
This repository was archived by the owner on Dec 14, 2023. It is now read-only.
I have multiple lists on a page I'm editing. The two lists, separated by a paragraph, are getting merged into the first list. This seems like it started after I updated nodejs to version 0.10.26. At it's simplest the page looks like this:
paragraph --> This is an intro paragraph
list-->List 1 - List Item 1
list-->List 1 - List Item 2
paragraph--> This is another paragraph
list-->List 2 - List Item 1
list-->List 2 - List Item 2
When I get the results from obj.get("article.content").asHtml({linkResolver: linkResolver}), I get the html as:
<p>This is an intro paragraph</p>
<ul>
<li>List 1 - List Item 1</li>
<li>List 1 - List Item 2</li>
<li>List 2 - List Item 1</li>
<li>List 2 - List Item 2</li>
</ul>
<p>This is another paragraph</p>