From 6cef5617423400fdfdbbeb9e2b0d2de8b6c2253d Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Sat, 4 Jul 2015 19:56:05 -0300 Subject: content-parser: fixed bug when using inline delim in link title --- src/content-parser.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/content-parser.c') diff --git a/src/content-parser.c b/src/content-parser.c index fa17ab8..8821a17 100644 --- a/src/content-parser.c +++ b/src/content-parser.c @@ -109,7 +109,7 @@ blogc_content_parse_inline(const char *src) switch (c) { case '\\': - if (open_code || open_code_double) { + if (state == LINK_CLOSED && (open_code || open_code_double)) { b_string_append_c(rv, c); break; } @@ -119,7 +119,7 @@ blogc_content_parse_inline(const char *src) case '*': case '_': - if (open_code || open_code_double) { + if (state == LINK_CLOSED && (open_code || open_code_double)) { b_string_append_c(rv, c); break; } @@ -176,7 +176,7 @@ blogc_content_parse_inline(const char *src) break; case '!': - if (open_code || open_code_double) { + if (state == LINK_CLOSED && (open_code || open_code_double)) { b_string_append_c(rv, c); break; } @@ -188,7 +188,7 @@ blogc_content_parse_inline(const char *src) break; case '[': - if (open_code || open_code_double) { + if (state == LINK_CLOSED && (open_code || open_code_double)) { b_string_append_c(rv, c); break; } @@ -212,7 +212,7 @@ blogc_content_parse_inline(const char *src) break; case ']': - if (open_code || open_code_double) { + if (state == LINK_CLOSED && (open_code || open_code_double)) { b_string_append_c(rv, c); break; } @@ -246,7 +246,7 @@ blogc_content_parse_inline(const char *src) break; case '(': - if (open_code || open_code_double) { + if (state == LINK_CLOSED && (open_code || open_code_double)) { b_string_append_c(rv, c); break; } @@ -260,7 +260,7 @@ blogc_content_parse_inline(const char *src) break; case ')': - if (open_code || open_code_double) { + if (state == LINK_CLOSED && (open_code || open_code_double)) { b_string_append_c(rv, c); break; } -- cgit v1.2.3-18-g5258