Join lines in compiled markdown so lists render in Confluence without extra whitespace

This commit is contained in:
Matt Radford 2021-01-12 21:37:07 -08:00
parent abb1fc9c05
commit 2db0de7228

View File

@ -117,6 +117,7 @@ func CompileMarkdown(
blackfriday.EXTENSION_TITLEBLOCK | blackfriday.EXTENSION_TITLEBLOCK |
blackfriday.EXTENSION_BACKSLASH_LINE_BREAK | blackfriday.EXTENSION_BACKSLASH_LINE_BREAK |
blackfriday.EXTENSION_DEFINITION_LISTS | blackfriday.EXTENSION_DEFINITION_LISTS |
blackfriday.EXTENSION_JOIN_LINES |
blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK, blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK,
}, },
) )