diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/command/smart.md | 20 |
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 +``` |