diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Writers/JATS.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/JATS.hs b/src/Text/Pandoc/Writers/JATS.hs index c5e86956b..07a49ceac 100644 --- a/src/Text/Pandoc/Writers/JATS.hs +++ b/src/Text/Pandoc/Writers/JATS.hs @@ -390,7 +390,8 @@ inlineToJATS _ il@(RawInline f x) | otherwise = do report $ InlineNotRendered il return empty -inlineToJATS _ LineBreak = return $ selfClosingTag "break" [] +inlineToJATS _ LineBreak = return cr -- not allowed as child of p +-- see https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/break.html inlineToJATS _ Space = return space inlineToJATS opts SoftBreak | writerWrapText opts == WrapPreserve = return cr |