summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-05-24 23:23:08 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2017-05-24 23:23:08 +0200
commitb9a30ef9596b8d19554e03cd1ef8f0dc0695a486 (patch)
tree61c96a1bc36025d5413fe974acafa2967e0492a7 /test
parent8f718b08834e496e98790e1b5b8a3cb9e1b932a6 (diff)
Markdown reader: fixed smart quotes after emphasis.
E.g. in *foo*'s 'foo' Closes #2228.
Diffstat (limited to 'test')
-rw-r--r--test/command/2228.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/command/2228.md b/test/command/2228.md
new file mode 100644
index 000000000..589a2350e
--- /dev/null
+++ b/test/command/2228.md
@@ -0,0 +1,6 @@
+```
+% pandoc -f markdown+smart -t latex+smart
+*foo*'s 'foo'
+^D
+\emph{foo}'s `foo'
+```