1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Lists should not be wrapped into paragraphs:
input: |
*Colors*
* Red
* Green
* Blue
Colors
# Red
# Green
# Blue
_Colors_
; Red
; Green
; Blue
expect: |
<strong>Colors</strong>
<ul>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ul>
Colors
<ol>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ol>
<em>Colors</em>
<dl>
<dt>Red</dt>
<dt>Green</dt>
<dt>Blue</dt>
</dl>