File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,9 @@ export function init () {
43
43
return `<pre v-pre data-lang="${ lang } "><code class="lang-${ lang } ">${ hl } </code></pre>`
44
44
}
45
45
renderer . link = function ( href , title , text ) {
46
- if ( ! / [: | \/ + ] / . test ( href ) ) {
46
+ if ( ! / : | ( \/ { 2 } ) / . test ( href ) ) {
47
47
href = `#/${ href } ` . replace ( / \/ + / g, '/' )
48
48
}
49
-
50
49
return `<a href="${ href } " title="${ title || '' } ">${ text } </a>`
51
50
}
52
51
renderer . paragraph = function ( text ) {
@@ -58,7 +57,7 @@ export function init () {
58
57
return `<p>${ text } </p>`
59
58
}
60
59
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, '/' )
62
61
const titleHTML = title ? ` title="${ title } "` : ''
63
62
64
63
return `<img src="${ url } " alt="${ text } "${ titleHTML } />`
You can’t perform that action at this time.
0 commit comments