在链接内的 GitHub 风格 Wiki 代码标签中使用 ]]
我希望拥有以下内容: My String[Sub[Sub2]]
但在链接内: [[My String[Sub[Sub2]]
|Page#tag]]
我发现大部分可以通过以下方式实现: [[其中没有括号的字符串。|Page#tag]]
关于如何执行此操作有什么想法吗?我也尝试过一些终止但没有成功: [[My String[Sub[Sub2\]\]|Page#tag]]
显示为: My String[Sub[Sub2\]\]
I'm looking to have the following:My String[Sub[Sub2]]
But inside a link:
[[My String[Sub[Sub2]]
|Page#tag]]
I have found that most of this can be achieved by:[[A string that does not have brackets in it.|Page#tag]]
Any thoughts on how to do this? I've also tried a bit of terminating but have had no success:[[My String[Sub[Sub2\]\]|Page#tag]]
as this shows up as: My String[Sub[Sub2\]\]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够将右括号编码为 HTML 实体,并避免让 GitHub 解析它们以结束链接。对于您不想结束链接的右括号,请使用
]
。 (如果您也想通过执行左括号来平衡编码,请将 93 替换为 91。)You should be able to encode the closing brackets as HTML entities and avoid having GitHub parse them to end the link. For right brackets you don't want to end links, use
]
. (If you want to balance out your encoding by doing the left brackets too, replace 93 with 91.)