Browse Source
Now list items cannot be indented more than 4 spaces from the first, as per commonmark 0.29 spec: - item 1 - item 2 - item 3 - item 4 - this one is a paragraph continuationpull/570/head
Alex Kocharin
6 years ago
4 changed files with 74 additions and 75 deletions
@ -1,67 +0,0 @@ |
|||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|||
src line: 5176 |
|||
|
|||
. |
|||
- a |
|||
- b |
|||
- c |
|||
- d |
|||
- e |
|||
. |
|||
<ul> |
|||
<li>a</li> |
|||
<li>b</li> |
|||
<li>c</li> |
|||
<li>d |
|||
- e</li> |
|||
</ul> |
|||
. |
|||
|
|||
error: |
|||
|
|||
<ul> |
|||
<li>a</li> |
|||
<li>b</li> |
|||
<li>c</li> |
|||
<li>d</li> |
|||
<li>e</li> |
|||
</ul> |
|||
|
|||
|
|||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|||
src line: 5196 |
|||
|
|||
. |
|||
1. a |
|||
|
|||
2. b |
|||
|
|||
3. c |
|||
. |
|||
<ol> |
|||
<li> |
|||
<p>a</p> |
|||
</li> |
|||
<li> |
|||
<p>b</p> |
|||
</li> |
|||
</ol> |
|||
<pre><code>3. c |
|||
</code></pre> |
|||
. |
|||
|
|||
error: |
|||
|
|||
<ol> |
|||
<li> |
|||
<p>a</p> |
|||
</li> |
|||
<li> |
|||
<p>b</p> |
|||
</li> |
|||
<li> |
|||
<p>c</p> |
|||
</li> |
|||
</ol> |
|||
|
|||
|
Loading…
Reference in new issue