在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>

标签: typecho

评论已关闭