matrix-org / matrix.org

matrix.org public website
Other
405 stars 333 forks source link

weird spacing around nested lists #2397

Open HarHarLinks opened 1 month ago

HarHarLinks commented 1 month ago

image

thibaultamartin commented 1 month ago

This seems to be an issue with Zola's markdown parser. It wraps list items in a paragraph when the item is a link

In other words, it turns

* [A link](link)

into

<ul>
    <li><p><a href="link">A link</a></p></li>
</ul>

Would you mind opening an issue upstream :) ?