md_analyze_line: Use ctx->code_indent_offset rather then encoded 4.
diff --git a/md4c/md4c.c b/md4c/md4c.c
index 156007e..09b531a 100644
--- a/md4c/md4c.c
+++ b/md4c/md4c.c
@@ -4899,7 +4899,7 @@ redo:
line->beg = off;
/* Some of the following whitespace actually still belongs to the mark. */
- if(line->indent <= 4) {
+ if(line->indent <= ctx->code_indent_offset) {
container.contents_indent += line->indent;
line->indent = 0;
} else {