summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-22 21:06:13 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-22 21:06:13 -0800
commite8809f7e448bffc51adac1f2e143d99496d6a55f (patch)
tree076e30b6efc88412475c63d1362b27b2140888ad /src
parent83ea962027d9425f404bf7659cf336fd1bd03417 (diff)
Updated JS and C implementations for #209.
A setext header was being treated a if it were a blank line for purposes of tight/loose list determination. Closes #209.
Diffstat (limited to 'src')
-rw-r--r--src/blocks.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/blocks.c b/src/blocks.c
index a30560f..48ca7e7 100644
--- a/src/blocks.c
+++ b/src/blocks.c
@@ -728,6 +728,7 @@ void cmark_process_line(cmark_doc_parser *parser, const char *buffer,
// on an empty list item.
container->last_line_blank = (blank &&
container->type != NODE_BQUOTE &&
+ container->type != NODE_SETEXT_HEADER &&
container->type != NODE_FENCED_CODE &&
!(container->type == NODE_LIST_ITEM &&
container->first_child == NULL &&