Displaying 1 result from an estimated 1 matches for "_processlistitems".
Did you mean:
processlistitems
2008 Jan 23
3
Problem with UL followed by OL
I got a problem with UL followed by by OL
when I using perl module "Text-Markdown-1.0.5".
I wrote the following markdown code.
- a
- b
1. 1
2. 2
I expected that Text-Markdown would produce the following HTML.
<ul>
<li>a</li>
<li>b</li>
</ul>
<ol>
<li>1</li>
<li>2</li>
</ol>
However, "Text-Markdown-1.0.5"