Skip to content

Commit 5a0545e

Browse files
Fix indentation
1 parent d8cb70c commit 5a0545e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/inlines.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -911,20 +911,20 @@ static cmark_node *handle_pointy_brace(subject *subj, int options) {
911911
if (c == '!' && (subj->flags & FLAG_SKIP_HTML_COMMENT) == 0) {
912912
c = subj->input.data[subj->pos+1];
913913
if (c == '-' && subj->input.data[subj->pos+2] == '-') {
914-
if (subj->input.data[subj->pos+3] == '>') {
915-
matchlen = 4;
916-
} else if (subj->input.data[subj->pos+3] == '-' &&
914+
if (subj->input.data[subj->pos+3] == '>') {
915+
matchlen = 4;
916+
} else if (subj->input.data[subj->pos+3] == '-' &&
917917
subj->input.data[subj->pos+4] == '>') {
918918
matchlen = 5;
919919
} else {
920920
matchlen = scan_html_comment(&subj->input, subj->pos + 1);
921921
if (matchlen > 0) {
922922
matchlen += 1; // prefix "<"
923-
} else { // no match through end of input: set a flag so
924-
// we don't reparse looking for -->:
925-
subj->flags |= FLAG_SKIP_HTML_COMMENT;
926-
}
927-
}
923+
} else { // no match through end of input: set a flag so
924+
// we don't reparse looking for -->:
925+
subj->flags |= FLAG_SKIP_HTML_COMMENT;
926+
}
927+
}
928928
} else if (c == '[') {
929929
if ((subj->flags & FLAG_SKIP_HTML_CDATA) == 0) {
930930
matchlen = scan_html_cdata(&subj->input, subj->pos + 2);

0 commit comments

Comments
 (0)