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 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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 -- cgit v1.2.3