diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-11-11 12:38:03 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-11-11 12:38:03 -0800 |
commit | d39b0941f070c420c1315b74b192f0f3ec312729 (patch) | |
tree | 81fdd6a975524741c26c60edb12a6798a78c7d0d | |
parent | 3b877eee794bad6e84f91e06d250c9bedb09941f (diff) |
Add example with unbalanced parens in link destination.
See commonmark/commonmark.js#177.
-rw-r--r-- | spec.txt | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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> |