mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-12-03 20:48:55 +08:00
fix(compiler): link
This commit is contained in:
parent
20a83808f3
commit
3b127a161c
@ -73,7 +73,10 @@ renderer.link = function (href, title, text) {
|
||||
} else {
|
||||
blank = ' target="_blank"'
|
||||
}
|
||||
return `<a href="${href}" title="${title || text}"${blank}>${text}</a>`
|
||||
if (title) {
|
||||
title = ` title="${title}"`
|
||||
}
|
||||
return `<a href="${href}"${title}${blank}>${text}</a>`
|
||||
}
|
||||
renderer.paragraph = function (text) {
|
||||
if (/^!>/.test(text)) {
|
||||
|
Loading…
Reference in New Issue
Block a user