summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-03-26 12:20:08 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-03-26 12:20:08 -0700
commite3990d751b96dbaa91ca9cdb20749c9002402ff6 (patch)
tree5e9bb6231c6bd10cf4da9a0627aa4b10c7293da9 /test
parentec97a06d8a2b458258f9c694181bbfb14fb6a20a (diff)
Update spec.txt.
Diffstat (limited to 'test')
-rw-r--r--test/spec.txt15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/spec.txt b/test/spec.txt
index a53e762..4162938 100644
--- a/test/spec.txt
+++ b/test/spec.txt
@@ -7338,12 +7338,13 @@ A [link destination](@) consists of either
closing `>` that contains no line breaks or unescaped
`<` or `>` characters, or
-- a nonempty sequence of characters that does not include
- ASCII space or control characters, and includes parentheses
- only if (a) they are backslash-escaped or (b) they are part of
- a balanced pair of unescaped parentheses. (Implementations
- may impose limits on parentheses nesting to avoid performance
- issues, but at least three levels of nesting should be supported.)
+- a nonempty sequence of characters that does not start with
+ `<`, does not include ASCII space or control characters, and
+ includes parentheses only if (a) they are backslash-escaped or
+ (b) they are part of a balanced pair of unescaped parentheses.
+ (Implementations may impose limits on parentheses nesting to
+ avoid performance issues, but at least three levels of nesting
+ should be supported.)
A [link title](@) consists of either
@@ -7446,7 +7447,7 @@ Pointy brackets that enclose links must be unescaped:
```````````````````````````````` example
[link](<foo\>)
.
-<p><a href="%3Cfoo%3E">link</a></p>
+<p>[link](&lt;foo&gt;)</p>
````````````````````````````````