我在降价文本文件中有以下行:
[递归](http://en.wikipedia.org/wiki/Recursion_(computer_science))
当它被渲染时,解析器通过选择第一个右括号而不是第二个右括号来中断链接。
该链接最终为http://en.wikipedia.org/wiki/Recursion_(computer_science而非。{ http://en.wikipedia.org/wiki/Recursion_(computer_science)
如何逃避第一个结束括号?
我尝试使用反斜杠并使用反引号,但它们不起作用。
答案 0 :(得分:2)
我找到了这个问题的详细答案和见解here
这是一个片段
1. Bare - http://example.com/test(1).html
2. Bare, encoded - http://example.com/test%281%29.html
3. Delimited - <http://example.com/test(1).html>
4. Hyperlink - with <a href="http://example.com/test(1).html">parens</a>
5. Markdown Link #1 - with [parens][1]
6. Markdown Link #1 - with [parens at end][2]
7. Markdown Link #2 - with [parens](http://example.com/test(1).html)
8. Markdown Link #2 - with [parens at end](http://example.com/test(1))