diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2019-02-18 15:53:19 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2019-02-18 15:53:19 +0300 |
commit | 596f8fd06b56a4afe9497c727a522c2f287be7f3 (patch) | |
tree | 07d9c34fc79c216db94d86ed44df200abc8a2e64 /src | |
parent | c4814ea965704ffb3bc7cf5e918a2fc342d401b3 (diff) | |
download | pandoc-596f8fd06b56a4afe9497c727a522c2f287be7f3.tar.gz |
hlint Muse
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Readers/Muse.hs | 2 | ||||
-rw-r--r-- | src/Text/Pandoc/Writers/Muse.hs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Readers/Muse.hs b/src/Text/Pandoc/Readers/Muse.hs index 012eb017d..e89cfecbb 100644 --- a/src/Text/Pandoc/Readers/Muse.hs +++ b/src/Text/Pandoc/Readers/Muse.hs @@ -803,7 +803,7 @@ footnote = try $ do return $ do notes <- asksF museNotes case M.lookup ref notes of - Nothing -> return $ B.str $ ref + Nothing -> return $ B.str ref Just (_pos, contents) -> do st <- askF let contents' = runF contents st { museNotes = M.delete ref (museNotes st) } diff --git a/src/Text/Pandoc/Writers/Muse.hs b/src/Text/Pandoc/Writers/Muse.hs index 2ceeaab37..7cdb25608 100644 --- a/src/Text/Pandoc/Writers/Muse.hs +++ b/src/Text/Pandoc/Writers/Muse.hs @@ -504,9 +504,9 @@ stringStartsWithSpace "" = False fixOrEscape :: Bool -> Inline -> Bool fixOrEscape sp (Str "-") = sp fixOrEscape sp (Str s@('-':x:_)) = (sp && isSpace x) || isHorizontalRule s -fixOrEscape sp (Str (";")) = not sp +fixOrEscape sp (Str ";") = not sp fixOrEscape sp (Str (';':x:_)) = not sp && isSpace x -fixOrEscape _ (Str (">")) = True +fixOrEscape _ (Str ">") = True fixOrEscape _ (Str ('>':x:_)) = isSpace x fixOrEscape sp (Str s) = (sp && (startsWithMarker isDigit s || startsWithMarker isAsciiLower s || |