Typecho文章里的超链接用新标签页打开

Typecho的文章中的超链接通常是以当前标签页打开,还没阅读完的内容就这样飞了

Typecho 1.1 版本为例 打开 var/HyperDown.php ,目标第398

<a href=\"{$self->_definitions[$matches[2]]}\">{$escaped}</a>

将其修改为:

<a target=\"_blank\" href=\"{$self->_definitions[$matches[2]]}\">{$escaped}</a>