mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
7720c88bfc
Fix ghCodeBlocks not being correctly parsed inside lists. Also, as a side effect, fixes issues with consecutive lists and extra paragraphs being added into lists. Closes #142, Closes #183, Closes #184
17 lines
244 B
HTML
17 lines
244 B
HTML
<h1 id="sometitle">some title</h1>
|
|
|
|
<ol>
|
|
<li>list item 1</li>
|
|
<li>list item 2</li>
|
|
</ol>
|
|
|
|
<pre><code>some code
|
|
|
|
and some other line of code
|
|
</code></pre>
|
|
|
|
<ul>
|
|
<li>another list item 1</li>
|
|
<li>another list item 2</li>
|
|
</ul>
|