Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Multiple Lists on a Page Getting Merged into One #64

@grommett

Description

@grommett

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>

I'm using prismic.io version 1.0.17

Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions