summaryrefslogtreecommitdiff
path: root/test/command/smart.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/smart.md')
-rw-r--r--test/command/smart.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/command/smart.md b/test/command/smart.md
index 541275f4a..e64d67de2 100644
--- a/test/command/smart.md
+++ b/test/command/smart.md
@@ -22,4 +22,24 @@ When we render literal quotes without smart, we need to escape:
\"hi\"\...dog\'s breath\-\--cat 5\--6
```
+```
+% pandoc -f markdown+smart -t rst-smart
+"hi"...dog's breath---cat 5--6
+^D
+“hi”…dog’s breath—cat 5–6
+```
+
+```
+% pandoc -f markdown+smart -t rst+smart
+"hi"...dog's breath---cat 5--6
+^D
+"hi"...dog's breath---cat 5--6
+```
+
+```
+% pandoc -f markdown-smart -t rst+smart
+"hi"...dog's breath---cat 5--6
+^D
+\"hi\"\...dog\'s breath\-\--cat 5\--6
+```