This commit is contained in:
Lunny Xiao 2017-09-04 14:22:07 +08:00
Родитель b689bb6180
Коммит caa61a2b99
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C3B7C91B632F738A
1 изменённых файлов: 1 добавлений и 1 удалений

2
public/vendor/plugins/autolink/autolink.js поставляемый
Просмотреть файл

@ -26,7 +26,7 @@
re.lastIndex = 0;
var results = re.exec(node.textContent);
if(results !== null) {
if($(node).parents().filter('pre>code').length === 0) {
if($(node).parents().filter('code').length === 0) {
$(node).replaceWith(
$('<span />').html(
node.nodeValue.replace(re, '<a href="$1">$1</a>')