Commit 6e49193e2a88df37caeae5d0853d005c7bc0ae1d

Martin Mitas 2019-03-26T13:44:55

md_is_link_title: Link title must be delimited from link destination with a whitespace.

diff --git a/md4c/md4c.c b/md4c/md4c.c
index 9779ebd..46ac6ed 100644
--- a/md4c/md4c.c
+++ b/md4c/md4c.c
@@ -2028,7 +2028,7 @@ md_is_link_title(MD_CTX* ctx, const MD_LINE* lines, int n_lines, OFF beg,
     CHAR closer_char;
     int line_index = 0;
 
-    /* Optional white space with up to one line break. */
+    /* White space with up to one line break. */
     while(off < lines[line_index].end  &&  ISWHITESPACE(off))
         off++;
     if(off >= lines[line_index].end) {
@@ -2037,6 +2037,8 @@ md_is_link_title(MD_CTX* ctx, const MD_LINE* lines, int n_lines, OFF beg,
             return FALSE;
         off = lines[line_index].beg;
     }
+    if(off == beg)
+        return FALSE;
 
     *p_beg_line_index = line_index;