diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2019-10-04 18:29:00 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2019-10-04 18:29:00 +0300 |
commit | 6898445548da72e414be1bd9aa35d2b2571de521 (patch) | |
tree | 999ba8b3de1f6426c4dbc16e076a63052803187f /src/Text | |
parent | 6a9cafc67ab57c9ea6fa342a1763eaa99e9e36b3 (diff) | |
download | pandoc-6898445548da72e414be1bd9aa35d2b2571de521.tar.gz |
hlint Muse writer
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Writers/Muse.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Muse.hs b/src/Text/Pandoc/Writers/Muse.hs index 51a9ea7d6..c6ff70f5b 100644 --- a/src/Text/Pandoc/Writers/Muse.hs +++ b/src/Text/Pandoc/Writers/Muse.hs @@ -621,7 +621,7 @@ inlineToMuse (Quoted DoubleQuote lst) = do return $ "“" <> contents <> "”" inlineToMuse Cite {} = throwError $ PandocShouldNeverHappenError - $ "Citations should be expanded before normalization" + "Citations should be expanded before normalization" inlineToMuse (Code _ str) = do useTags <- gets stUseTags modify $ \st -> st { stUseTags = False } |