aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-06-23 13:04:42 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-06-23 13:04:42 -0700
commit52ac58596716dd5e202c19f86fb14ded931ebeb1 (patch)
tree0cfc895f6f23d9357b3dae653f25d266c6fda676 /src/Text/Pandoc/Writers
parent9b7282bb0f27546354b777d2174c26fb88c8e110 (diff)
downloadpandoc-52ac58596716dd5e202c19f86fb14ded931ebeb1.tar.gz
Remove redundant pattern match in pptx writer.
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r--src/Text/Pandoc/Writers/Powerpoint/Presentation.hs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Writers/Powerpoint/Presentation.hs b/src/Text/Pandoc/Writers/Powerpoint/Presentation.hs
index a75b04d2e..c6d76424d 100644
--- a/src/Text/Pandoc/Writers/Powerpoint/Presentation.hs
+++ b/src/Text/Pandoc/Writers/Powerpoint/Presentation.hs
@@ -370,9 +370,6 @@ inlineToParElems (Note blks) = do
modify $ \st -> st { stNoteIds = M.insert curNoteId blks notes }
local (\env -> env{envRunProps = (envRunProps env){rLink = Just $ InternalTarget endNotesSlideId}}) $
inlineToParElems $ Superscript [Str $ tshow curNoteId]
-inlineToParElems (Underline ils) =
- local (\r -> r{envRunProps = (envRunProps r){rPropUnderline=True}}) $
- inlinesToParElems ils
inlineToParElems (Span _ ils) = inlinesToParElems ils
inlineToParElems (Quoted quoteType ils) =
inlinesToParElems $ [Str open] ++ ils ++ [Str close]