aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-04-15 09:48:11 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-04-15 09:48:11 -0700
commite409509a681ee75c6d3eec0b913d40c26aeaabb2 (patch)
tree0e93fa993dd0a9648725f07a202e6689d7b696aa /test
parent6d19c08e9f5bae0547ca98b853fd59921a391623 (diff)
downloadpandoc-e409509a681ee75c6d3eec0b913d40c26aeaabb2.tar.gz
RST writer: treat Span as transparent.
Previously an Emph inside a Span was being treated as nested markup and ignored. With this patch, the Span is just ignored. Closes #5446.
Diffstat (limited to 'test')
-rw-r--r--test/command/5446.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/command/5446.md b/test/command/5446.md
new file mode 100644
index 000000000..5b25c994b
--- /dev/null
+++ b/test/command/5446.md
@@ -0,0 +1,6 @@
+```
+% pandoc -f latex -t rst
+{\em test test \/}
+^D
+*test test*
+```