Lists currently generate the following markup
Content:
Output:
<ul>
<li>
<p>List item</p>
</li>
</ul>
It should generate this markup:
<ul>
<li>List item</li>
</ul>
This is breaking for any case where you have other content inside list items and are expecting inline content (as would be intuitively expected). Case in point: custom list bullets in ::before elements on Simpla's Privacy Policy. Using simpla-article results in a newline between the bullet and the list item content, since paragraphs are blocks by default.
Lists currently generate the following markup
Content:
Output:
It should generate this markup:
This is breaking for any case where you have other content inside list items and are expecting inline content (as would be intuitively expected). Case in point: custom list bullets in
::beforeelements on Simpla's Privacy Policy. Using simpla-article results in a newline between the bullet and the list item content, since paragraphs are blocks by default.