diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/command/ascii.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/command/ascii.md b/test/command/ascii.md index 96fc50291..d01389a60 100644 --- a/test/command/ascii.md +++ b/test/command/ascii.md @@ -51,3 +51,39 @@ pandoc -t markdown-smart --ascii “äéıå” ``` +# CommonMark tests + +``` +% pandoc -f commonmark -t commonmark --ascii +hello … ok? … bye +^D +hello … ok? … bye +``` + +``` +% pandoc -f commonmark+smart -t commonmark-smart --ascii --wrap=none +"hi"...dog's breath---cat 5--6 +^D +“hi”…dog’s breath—cat 5–6 +``` + +``` +% pandoc -f commonmark+smart -t commonmark+smart --ascii +"hi"...dog's breath---cat 5--6 +^D +"hi"...dog's breath---cat 5--6 +``` + +``` +% pandoc -f commonmark -t commonmark --ascii +foo Ӓ bar +^D +foo Ӓ bar +``` + +``` +% pandoc -f commonmark -t commonmark --ascii +\[foo\](bar) +^D +\[foo\](bar) +``` |