Files
John MacFarlane 1e43eb46ce Org reader: don't parse alphabetical lists...
...unless the `fancy_lists` extension is enabled.
Closes #9042.
2023-08-30 22:01:41 -07:00

362 B

% 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>