From a3be6dc81c971fa1b3c656d82f7e96794d510212 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 22 Nov 2014 21:13:22 -0800 Subject: Fixed #192. The C and JS implementations were not registering blank lines after atx headers for purposes of tight/loose list calculation. Exmaple: * item * # block1 ## block2 --- src/blocks.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/blocks.c b/src/blocks.c index 48ca7e7..7def4c8 100644 --- a/src/blocks.c +++ b/src/blocks.c @@ -553,6 +553,9 @@ void cmark_process_line(cmark_doc_parser *parser, const char *buffer, // a header can never contain more than one line all_matched = false; + if (blank) { + container->last_line_blank = true; + } } else if (container->type == NODE_FENCED_CODE) { @@ -566,6 +569,7 @@ void cmark_process_line(cmark_doc_parser *parser, const char *buffer, } else if (container->type == NODE_HTML) { if (blank) { + container->last_line_blank = true; all_matched = false; } -- cgit v1.2.3