From e409509a681ee75c6d3eec0b913d40c26aeaabb2 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 15 Apr 2019 09:48:11 -0700 Subject: 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. --- src/Text/Pandoc/Writers/RST.hs | 3 +++ test/command/5446.md | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 test/command/5446.md diff --git a/src/Text/Pandoc/Writers/RST.hs b/src/Text/Pandoc/Writers/RST.hs index bf7b35579..c4fd27132 100644 --- a/src/Text/Pandoc/Writers/RST.hs +++ b/src/Text/Pandoc/Writers/RST.hs @@ -472,6 +472,9 @@ flatten outer -- them and they will be readable and parsable (Quoted _ _, _) -> keep f i (_, Quoted _ _) -> keep f i + -- spans are not rendered using RST inlines, so we can keep them + (Span _ _, _) -> keep f i + (_, Span _ _) -> keep f i -- inlineToRST handles this case properly so it's safe to keep (Link _ _ _, Image _ _ _) -> keep f i -- parent inlines would prevent links from being correctly 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* +``` -- cgit v1.2.3