mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
31 lines
362 B
Markdown
31 lines
362 B
Markdown
```
|
|
% pandoc -f org
|
|
#+TITLE: Testing
|
|
|
|
* Testing
|
|
|
|
p. lower case
|
|
|
|
P. Upper Case
|
|
^D
|
|
<h1 id="testing-1">Testing</h1>
|
|
<p>p. lower case</p>
|
|
<p>P. Upper Case</p>
|
|
```
|
|
```
|
|
% pandoc -f org+fancy_lists
|
|
#+TITLE: Testing
|
|
|
|
* Testing
|
|
|
|
p. lower case
|
|
|
|
P. Upper Case
|
|
^D
|
|
<h1 id="testing-1">Testing</h1>
|
|
<ol type="a">
|
|
<li><p>lower case</p></li>
|
|
<li><p>Upper Case</p></li>
|
|
</ol>
|
|
```
|