baynezy/Html2Markdown

<ol>Support of <li value = ""

Opened this issue · 0 comments

Report issue

The <ol> tag does not support <li value="x"> for non-continuous lists

Given the following HTML:

<ol>
<li>First</li>
<li value = "100">Hundredth</li>
</ol>

Expected behavior

1: First
100: Hundredth

Actual Behaviour

1: First
2: Hundredth

Steps to reproduce the problem

Convert the above HTML to markdown.