maccoda / made-up

Static site generator for Markdown files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nested Lists

maccoda opened this issue · comments

The HTML generated incorrectly generates nested lists, it does not append the closing li tag in the correct place as shown:

<li>Point two
    <ul>
        <li>Indent point one</li>
    </ul>
</li>

So apparently this is actually how nested lists should be done in HTML. So no issue actually present.