summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-03-19 17:46:23 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-03-19 17:46:23 -0700
commitbe18e71f5baec16da794b0f006071799fc9a4db0 (patch)
treedd2c1bf31ebf4fc7ec9b7cde28ddf9fdc8485bd2
parentecd0c8c23f011e845ca96704b154083c0f07a994 (diff)
Update spec. Fix `[link](<foo\>)`.
-rw-r--r--src/inlines.c3
-rw-r--r--test/spec.txt9
2 files changed, 12 insertions, 0 deletions
diff --git a/src/inlines.c b/src/inlines.c
index dc899dc..bab607a 100644
--- a/src/inlines.c
+++ b/src/inlines.c
@@ -970,6 +970,9 @@ static bufsize_t manual_scan_link_url(cmark_chunk *input, bufsize_t offset,
else
++i;
}
+ if (i >= input->len) {
+ return manual_scan_link_url_2(input, offset, output);
+ }
} else {
return manual_scan_link_url_2(input, offset, output);
}
diff --git a/test/spec.txt b/test/spec.txt
index 91551e5..dc944d0 100644
--- a/test/spec.txt
+++ b/test/spec.txt
@@ -7417,6 +7417,15 @@ bar>)
bar>)</p>
````````````````````````````````
+Pointy brackets that enclose links must be unescaped:
+
+```````````````````````````````` example
+[link](<foo\>)
+.
+<p><a href="%3Cfoo%3E">link</a></p>
+````````````````````````````````
+
+
Parentheses inside the link destination may be escaped:
```````````````````````````````` example