aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2019-10-31 22:01:12 +0100
committerAlbert Krewinkel <albert@zeitkraut.de>2019-10-31 22:01:12 +0100
commit4e902b1d601c57f19eb9b7e0a51a4420a45aea59 (patch)
tree3ed9ce00ae598dbf8408c21271211e9431771096 /src/Text/Pandoc/Writers
parent4f1224dc0bfc4a5ca02467dc9a37c388277002a3 (diff)
downloadpandoc-4e902b1d601c57f19eb9b7e0a51a4420a45aea59.tar.gz
Jira writer: remove extraneous newline after single-line block quotes
See #5858
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r--src/Text/Pandoc/Writers/Jira.hs2
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