markdown url 新窗口


markdown语法默认的链接语法糖是:
[链接名](链接url地址 "标题属性")

其中标题属性就是鼠标滑过的title显示。

如果需要点击由markdown生成的html自动在新窗口打开,有一个通用的简单方法:

$(document).ready(function(){
    //js write here
    $(".contents a").each(function(){this.target="_blank";});//new tab for url
});

一行代码解决,$(".contents a")中的contents就是你想替换url为新窗口打开的作用域标签名。


原文链接:https://blog.yongit.com/note/769651.html