diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-08 12:08:36 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-09 13:21:37 -0800 |
commit | c6f95684f90a4d1efd2185984b1aa2931591efb4 (patch) | |
tree | df34cb274d4288a682d397626e69b7b2b23296f2 | |
parent | 18207addd5d922a9ca1ec6e83a895108f13e3c25 (diff) |
Fixed problem with images.
-rw-r--r-- | src/inlines.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inlines.c b/src/inlines.c index 937c33f..a3d848d 100644 --- a/src/inlines.c +++ b/src/inlines.c @@ -858,6 +858,7 @@ static int parse_inline(subject* subj, node_inl ** last) case '!': advance(subj); if (peek_char(subj) == '[') { + advance(subj); new = make_str(chunk_literal("![")); subj->openers = push_opener(subj, 1, '!', new); } else { |