typecho文章内容链接新窗口打开
在typecho源码中找到如下文件
/var/HyperDown.php
在文件中找到386行附近的如下代码
<a href=\"{$url}\">{$escaped}</a>
修改为
<a target=\"_blank\" href=\"{$url}\">{$escaped}</a>
在文件中找到398行附近的如下代码
<a href=\"{$self->_definitions[$matches[2]]}\">{$escaped}</a>
修改为
<a target=\"_blank\" href=\"{$self->_definitions[$matches[2]]}\">{$escaped}</a>
评论已关闭