使用 Markdown (BlueCloth) 生成在新窗口中打开的链接
我想要使用 BlueCloth 生成一个在新窗口中打开的链接。我所能找到的只是普通的 [Google](http://www.google.com/)
语法,但在新窗口中却找不到任何内容。
有想法吗?
问候
汤姆
I'd like to have a link generated with BlueCloth that opens in a new window. All I could find was the ordinary [Google](http://www.google.com/)
syntax but nothing with a new window.
Ideas?
Regards
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是 markdown 的完整参考: http://daringfireball.net/projects/markdown/syntax
由于没有提到如何设置目标属性,我认为这不是直接可能的,但参考文献还说:
资料来源: http://daringfireball.net/projects/markdown/syntax#html
所以我 并且您使用 jQuery ,则建议您必须对这样的
update
如果您将 Markdown 生成的内容包装在具有特定 id 的 div 中,
链接使用 html 语法:并且您使用 jQuery,您可以添加以下 javascript:
或者您可以在输出之前将 BlueCloth 输出保存在变量中。
Here is a complete reference for markdown: http://daringfireball.net/projects/markdown/syntax
And since there is no mention of how to set the target attribute, I would believe it is not directly possible, but the reference also says:
Source: http://daringfireball.net/projects/markdown/syntax#html
So I would suggest you have to use the html syntax for links like this
update
if you wrap the markdown generated content in a div with a specific id like this:
and you use jQuery, you can add the following javascript:
Or you can save the BlueCloth output in a variable before outputting.