summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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