diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2019-10-31 22:01:12 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2019-10-31 22:01:12 +0100 |
commit | 4e902b1d601c57f19eb9b7e0a51a4420a45aea59 (patch) | |
tree | 3ed9ce00ae598dbf8408c21271211e9431771096 /src/Text | |
parent | 4f1224dc0bfc4a5ca02467dc9a37c388277002a3 (diff) | |
download | pandoc-4e902b1d601c57f19eb9b7e0a51a4420a45aea59.tar.gz |
Jira writer: remove extraneous newline after single-line block quotes
See #5858
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Writers/Jira.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Jira.hs b/src/Text/Pandoc/Writers/Jira.hs index 79f63e229..b610dd8bf 100644 --- a/src/Text/Pandoc/Writers/Jira.hs +++ b/src/Text/Pandoc/Writers/Jira.hs @@ -152,7 +152,7 @@ blockToJira _ (CodeBlock attr@(_,classes,_) str) = do blockToJira opts (BlockQuote [p@(Para _)]) = do contents <- blockToJira opts p - appendNewlineUnlessInList ("bq. " <> contents) + return ("bq. " <> contents) blockToJira opts (BlockQuote blocks) = do contents <- blockListToJira opts blocks |