summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2023-08-30 22:01:00 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2023-08-30 22:01:41 -0700
commit1e43eb46ce3156ef72b5890d64af17c81ef6c580 (patch)
treecaea2fa3c03a26105a8289dd5dd9842aa9167545 /test/command
parented48998a89c4f589c7c17621d26400f70f7b5aa4 (diff)
Org reader: don't parse alphabetical lists...
...unless the `fancy_lists` extension is enabled. Closes #9042.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/9042.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/command/9042.md b/test/command/9042.md
new file mode 100644
index 000000000..a27fa8023
--- /dev/null
+++ b/test/command/9042.md
@@ -0,0 +1,30 @@
+```
+% 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>
+```