aboutsummaryrefslogtreecommitdiff
path: root/test/command/smart.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/smart.md')
-rw-r--r--test/command/smart.md45
1 files changed, 0 insertions, 45 deletions
diff --git a/test/command/smart.md b/test/command/smart.md
deleted file mode 100644
index e64d67de2..000000000
--- a/test/command/smart.md
+++ /dev/null
@@ -1,45 +0,0 @@
-```
-% pandoc -f markdown+smart -t markdown-smart
-"hi"...dog's breath---cat 5--6
-^D
-“hi”…dog’s breath—cat 5–6
-```
-
-```
-% pandoc -f markdown+smart -t markdown+smart
-"hi"...dog's breath---cat 5--6
-^D
-"hi"...dog's breath---cat 5--6
-```
-
-When we render literal quotes without smart, we need to escape:
-
-```
-% pandoc -f markdown-smart \
- -t markdown+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
-```
-
-```
-% pandoc -f markdown-smart -t rst+smart
-"hi"...dog's breath---cat 5--6
-^D
-\"hi\"\...dog\'s breath\-\--cat 5\--6
-```
-