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

List indentation doesn't work #110

Open
msander1983 opened this issue Nov 17, 2020 · 0 comments
Open

List indentation doesn't work #110

msander1983 opened this issue Nov 17, 2020 · 0 comments
Labels
awaiting review This pull request is awaiting review bug Something isn't working

Comments

@msander1983
Copy link

The following HTML:

    <body>
        <ul>
            <li><a href=""A/Lorem.htm"">Level 1</a>
                <ul>
                    <li><a href=""A/Lorem.htm"">Level 2</a>
                    </li>
                    <li><a href=""A/Lorem.htm"">Level 2</a>
                    </li>
                    <li><a href=""A/Lorem.htm"">Level 2</a>
                        <ul>
                            <li><a href=""A/Lorem.htm"">Level 3</a></li>
                            <li><a href=""A/Lorem.htm"">Level 3</a></li>
                        </ul>
                    </li>
                    <li><a href=""A/Lorem.htm"">Level 2</a>
                    </li>
                    <li><a href=""A/Lorem.htm"">Level 2</a>
                    </li>
                </ul>
            </li>
        </ul>
    </body>

is converted to this Markdown text:

*   [Level 1](A/Lorem.htm)

    *   [Level 2](A/Lorem.htm)
    *   [Level 2](A/Lorem.htm)
    *   [Level 2](A/Lorem.htm)

    *   [Level 3](A/Lorem.htm)
    *   [Level 3](A/Lorem.htm)
    *   [Level 2](A/Lorem.htm)
    *   [Level 2](A/Lorem.htm)

I would expect the "Level 3" items to be indented, and there's also an unexpected empty line after items with a sub-list.

@baynezy baynezy added awaiting review This pull request is awaiting review bug Something isn't working labels Nov 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
awaiting review This pull request is awaiting review bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants