Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
citkane opened this issue Apr 15, 2020 · 0 comments
Open

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

citkane opened this issue Apr 15, 2020 · 0 comments

Comments

@citkane
Copy link

citkane commented Apr 15, 2020

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant