aboutsummaryrefslogtreecommitdiff
path: root/spec.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-11-11 12:38:03 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2019-11-11 12:38:03 -0800
commitd39b0941f070c420c1315b74b192f0f3ec312729 (patch)
tree81fdd6a975524741c26c60edb12a6798a78c7d0d /spec.txt
parent3b877eee794bad6e84f91e06d250c9bedb09941f (diff)
Add example with unbalanced parens in link destination.
See commonmark/commonmark.js#177.
Diffstat (limited to 'spec.txt')
-rw-r--r--spec.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec.txt b/spec.txt
index 8f9ac0b..1197d1b 100644
--- a/spec.txt
+++ b/spec.txt
@@ -7622,6 +7622,13 @@ However, if you have unbalanced parentheses, you need to escape or use the
`<...>` form:
```````````````````````````````` example
+[link](foo(and(bar))
+.
+<p>[link](foo(and(bar))</p>
+````````````````````````````````
+
+
+```````````````````````````````` example
[link](foo\(and\(bar\))
.
<p><a href="foo(and(bar)">link</a></p>