diff options
Diffstat (limited to 'src/Text')
| -rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index f1fe6ff17..3bc59f262 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -1337,8 +1337,8 @@ inlineCommands = M.union inlineLanguageCommands $ M.fromList $    , ("bar", lit "|")    , ("textless", lit "<")    , ("textgreater", lit ">") -  , ("thanks", note <$> grouped block) -  , ("footnote", note <$> grouped block) +  , ("thanks", skipopts >> note <$> grouped block) +  , ("footnote", skipopts >> note <$> grouped block)    , ("verb", doverb)    , ("lstinline", dolstinline)    , ("Verb", doverb) | 
