Skip to content

Commit a866744

Browse files
committed
fix(render): fix render link
1 parent 38ea660 commit a866744

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/render.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,9 @@ export function init () {
4343
return `<pre v-pre data-lang="${lang}"><code class="lang-${lang}">${hl}</code></pre>`
4444
}
4545
renderer.link = function (href, title, text) {
46-
if (!/[:|\/+]/.test(href)) {
46+
if (!/:|(\/{2})/.test(href)) {
4747
href = `#/${href}`.replace(/\/+/g, '/')
4848
}
49-
5049
return `<a href="${href}" title="${title || ''}">${text}</a>`
5150
}
5251
renderer.paragraph = function (text) {
@@ -58,7 +57,7 @@ export function init () {
5857
return `<p>${text}</p>`
5958
}
6059
renderer.image = function (href, title, text) {
61-
const url = /[:|\/+]/.test(href) ? href : ($docsify.basePath + href).replace(/\/+/g, '/')
60+
const url = /:|(\/{2})/.test(href) ? href : ($docsify.basePath + href).replace(/\/+/g, '/')
6261
const titleHTML = title ? ` title="${title}"` : ''
6362

6463
return `<img src="${url}" alt="${text}"${titleHTML} />`

0 commit comments

Comments
 (0)