blob: eaffcf7f3bb9d442f0490d4f6088415366e10375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
```
% pandoc -f html -t markdown
<ol>
<li>An ordered list can contain block-level elements ind html, it means that divs are also allowed.</li>
<li>Let's see the problem! <div class="example">This is an example.</div></li>
</ol>
^D
1. An ordered list can contain block-level elements ind html, it means
that divs are also allowed.
2. Let\'s see the problem!
::: example
This is an example.
:::
```
|