docs: update Chinese documentation links to point to release-v4

This commit is contained in:
Luffy 2025-05-08 17:09:52 +08:00
parent 141ac96add
commit a7407cbee5
No known key found for this signature in database
GPG Key ID: C3BB4FF13CD72ACE
2 changed files with 7 additions and 8 deletions

View File

@ -79,7 +79,7 @@
'/ru-ru/(.*)':
'https://raw.githubusercontent.com/docsifyjs/docs-ru/master/$1',
'/zh-cn/(.*)':
'https://cdn.jsdelivr.net/gh/docsifyjs/docs-zh@master/$1',
'https://cdn.jsdelivr.net/gh/docsifyjs/docs-zh@release-v4/$1',
},
auto2top: true,
coverpage: true,
@ -184,10 +184,10 @@
} else if (/jsdelivr\.net/.test(vm.route.file)) {
url = vm.route.file
.replace('cdn.jsdelivr.net/gh', 'github.com')
.replace('@master', '/blob/master');
.replace('@release-v4', '/blob/release-v4');
} else {
url =
'https://github.com/docsifyjs/docsify/blob/develop/docs/' +
'https://github.com/docsifyjs/docsify/blob/release-v4/docs/' +
vm.route.file;
}
var editHtml = '[:memo: Edit Document](' + url + ')\n';

View File

@ -47,7 +47,7 @@
'/ru-ru/(.*)':
'https://raw.githubusercontent.com/docsifyjs/docs-ru/master/$1',
'/zh-cn/(.*)':
'https://cdn.jsdelivr.net/gh/docsifyjs/docs-zh@master/$1',
'https://cdn.jsdelivr.net/gh/docsifyjs/docs-zh@release-v4/$1',
},
auto2top: true,
basePath: '/docs/',
@ -95,10 +95,10 @@
} else if (/jsdelivr\.net/.test(vm.route.file)) {
url = vm.route.file
.replace('cdn.jsdelivr.net/gh', 'github.com')
.replace('@master', '/blob/master');
.replace('@release-v4', '/blob/release-v4');
} else {
url =
'https://github.com/docsifyjs/docsify/blob/develop/docs/' +
'https://github.com/docsifyjs/docsify/blob/release-v4/docs/' +
vm.route.file;
}
var editHtml = '[:memo: Edit Document](' + url + ')\n';
@ -106,8 +106,7 @@
editHtml +
html +
'\n\n----\n\n' +
'<a href="https://docsify.js.org" target="_blank" style="color: inherit; font-weight: normal; text-decoration: none;">Powered by docsify</a>\n\n' +
'<a href="https://vercel.com/?utm_source=docsifyjs&utm_campaign=oss" target="_blank" title="Vercel has given us a Pro account"><img src="/docs/_media/powered-by-vercel.svg" alt="Vercel" width="150"></a>'
'<a href="https://docsify.js.org" target="_blank" style="color: inherit; font-weight: normal; text-decoration: none;">Powered by docsify</a>'
);
});
},