aboutsummaryrefslogtreecommitdiff
path: root/test/command/10919.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/10919.md')
-rw-r--r--test/command/10919.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/command/10919.md b/test/command/10919.md
new file mode 100644
index 000000000..6f03c8371
--- /dev/null
+++ b/test/command/10919.md
@@ -0,0 +1,21 @@
+# Org output with smart quotes turned on
+
+```
+% pandoc -t org+smart_quotes -s
+"It's nice" she said.
+^D
+#+options: ':t
+
+"It's nice" she said.
+```
+
+Same test, but with special strings turned off.
+```
+% pandoc -t org+smart_quotes-special_strings -s
+"It's nice" she said.
+^D
+#+options: ':t
+#+options: -:nil
+
+"It’s nice" she said.
+```