md_is_container_mark: If indented as an indented code block, we cannot be a container start. This fixes this: > foo - bar
diff --git a/md4c/md4c.c b/md4c/md4c.c
index 96b00d5..1f05c4d 100644
--- a/md4c/md4c.c
+++ b/md4c/md4c.c
@@ -4583,6 +4583,9 @@ md_is_container_mark(MD_CTX* ctx, unsigned indent, OFF beg, OFF* p_end, MD_CONTA
OFF off = beg;
OFF max_end;
+ if(indent >= ctx->code_indent_offset)
+ return FALSE;
+
/* Check for block quote mark. */
if(off < ctx->size && CH(off) == _T('>')) {
off++;