md_analyze_line: Blank line inside a blockquote cannot have a list loosening effect.
diff --git a/md4c/md4c.c b/md4c/md4c.c
index 4b8acff..9e1538a 100644
--- a/md4c/md4c.c
+++ b/md4c/md4c.c
@@ -4857,7 +4857,9 @@ redo:
ctx->last_line_has_list_loosening_effect = FALSE;
} else {
line->type = MD_LINE_BLANK;
- ctx->last_line_has_list_loosening_effect = (n_brothers + n_children == 0);
+ ctx->last_line_has_list_loosening_effect = (n_parents > 0 &&
+ n_brothers + n_children == 0 &&
+ ctx->containers[n_parents-1].ch != _T('>'));
}
goto done;
} else {