Skip to content

Indents for list items not rendering from .md input file #409

Description

@citkane

Docco 0.8.0

Given a .md input file with:

-.List
....-.item1
....-.item2

docco renders

<ul>
    <li>List</li>
    <li>item1</li>
    <li>item2</li>
</ul>

The indents are not rendering (tried with ..- and ....-).

However, given a .js input file with:

//-.List
//....-.item1
//....-.item2

docco renders:

<ul>
    <li>List
        <ul>
            <li>item1</li>
            <li>item2</li>
        </ul>
    </li>
</ul>

indents render just fine.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions