diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Writers/LaTeX.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/LaTeX.hs b/src/Text/Pandoc/Writers/LaTeX.hs index 054a16259..789593118 100644 --- a/src/Text/Pandoc/Writers/LaTeX.hs +++ b/src/Text/Pandoc/Writers/LaTeX.hs @@ -841,7 +841,9 @@ hypertarget addnewline ident x = do ref <- text `fmap` toLabel ident return $ text "\\hypertarget" <> braces ref - <> braces ((if addnewline then ("%" <> cr) else empty) <> x) + <> braces ((if addnewline && not (isEmpty x) + then ("%" <> cr) + else empty) <> x) labelFor :: PandocMonad m => String -> LW m Doc labelFor "" = return empty |