diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/commonmark.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/commonmark.c b/src/commonmark.c index 3440a91..f00d243 100644 --- a/src/commonmark.c +++ b/src/commonmark.c @@ -277,6 +277,15 @@ static int S_render_node(cmark_renderer *renderer, cmark_node *node, break; case CMARK_NODE_CODE_BLOCK: + if (entering && node->prev && + (node->prev->type == CMARK_NODE_CODE_BLOCK)) { + // this ensures that consecutive indented code blocks will not + // be merged (#317) + CR(); + LIT("<!-- end code block -->"); + BLANKLINE(); + } + first_in_list_item = node->prev == NULL && node->parent && node->parent->type == CMARK_NODE_ITEM; |