aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/Markdown.hs
diff options
context:
space:
mode:
authorJoseph C. Sible <josephcsible@users.noreply.github.com>2020-03-30 00:11:05 -0400
committerGitHub <noreply@github.com>2020-03-29 21:11:05 -0700
commit377efd0ce7736685c2a43842743a11ae01ed0a0b (patch)
treefdb71f111bce17b9e8a5556c0f89739ac35eec16 /src/Text/Pandoc/Writers/Markdown.hs
parent40fd20d43fc2431e411554c138cb6e7d15654917 (diff)
downloadpandoc-377efd0ce7736685c2a43842743a11ae01ed0a0b.tar.gz
Clean up some fmaps (#6226)
* Avoid fmapping when we're just binding right after anyway * Clean up unnecessary fmaps in the LaTeX reader
Diffstat (limited to 'src/Text/Pandoc/Writers/Markdown.hs')
-rw-r--r--src/Text/Pandoc/Writers/Markdown.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Writers/Markdown.hs b/src/Text/Pandoc/Writers/Markdown.hs
index 304147bee..5c264aa30 100644
--- a/src/Text/Pandoc/Writers/Markdown.hs
+++ b/src/Text/Pandoc/Writers/Markdown.hs
@@ -360,9 +360,9 @@ beginsWithOrderedListMarker str =
notesAndRefs :: PandocMonad m => WriterOptions -> MD m (Doc Text)
notesAndRefs opts = do
- notes' <- reverse <$> gets stNotes >>= notesToMarkdown opts
+ notes' <- gets stNotes >>= notesToMarkdown opts . reverse
modify $ \s -> s { stNotes = [] }
- refs' <- reverse <$> gets stRefs >>= refsToMarkdown opts
+ refs' <- gets stRefs >>= refsToMarkdown opts . reverse
modify $ \s -> s { stPrevRefs = stPrevRefs s ++ stRefs s
, stRefs = []}