2016-11-26 18:37:17 +08:00
<!DOCTYPE html>
< html lang = "en" >
2021-02-05 04:49:09 +08:00
< head >
< meta charset = "UTF-8" / >
< title > docsify< / title >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" / >
< meta name = "viewport" content = "width=device-width,initial-scale=1" / >
< link rel = "stylesheet" href = "/themes/vue.css" title = "vue" / >
< link rel = "stylesheet" href = "/themes/dark.css" title = "dark" disabled / >
< link rel = "stylesheet" href = "/themes/buble.css" title = "buble" disabled / >
< link rel = "stylesheet" href = "/themes/pure.css" title = "pure" disabled / >
2023-01-10 16:02:02 +08:00
< link rel = "stylesheet" href = "/themes/dolphin.css" title = "dolphin" disabled / >
2021-02-05 04:49:09 +08:00
< style >
nav.app-nav li ul {
min-width: 100px;
}
2018-03-03 22:51:27 +08:00
2021-02-05 04:49:09 +08:00
#carbonads {
box-shadow: none !important;
width: auto !important;
}
< / style >
< / head >
2020-08-17 22:53:11 +08:00
2021-02-05 04:49:09 +08:00
< body >
< div id = "app" > < / div >
2022-02-05 17:21:50 +08:00
< script src = "//cdn.jsdelivr.net/npm/docsify-plugin-carbon@1" > < / script >
2021-02-05 04:49:09 +08:00
< script >
// Set html "lang" attribute based on URL
var lang = location.hash.match(/#\/(de-de|es|ru-ru|zh-cn)\//);
2018-03-03 22:51:27 +08:00
2021-02-05 04:49:09 +08:00
if (lang) {
document.documentElement.setAttribute('lang', lang[1]);
}
2021-02-05 04:40:12 +08:00
2021-02-05 04:49:09 +08:00
// Docsify configuration
window.$docsify = {
alias: {
'.*?/awesome':
'https://raw.githubusercontent.com/docsifyjs/awesome-docsify/master/README.md',
'.*?/changelog':
'https://raw.githubusercontent.com/docsifyjs/docsify/master/CHANGELOG.md',
'/.*/_navbar.md': '/_navbar.md',
'/es/(.*)':
'https://raw.githubusercontent.com/docsifyjs/docs-es/master/$1',
'/de-de/(.*)':
'https://raw.githubusercontent.com/docsifyjs/docs-de/master/$1',
'/ru-ru/(.*)':
'https://raw.githubusercontent.com/docsifyjs/docs-ru/master/$1',
'/zh-cn/(.*)':
'https://cdn.jsdelivr.net/gh/docsifyjs/docs-zh@master/$1',
2020-07-24 15:42:00 +08:00
},
2021-02-05 04:49:09 +08:00
auto2top: true,
basePath: '/docs/',
coverpage: true,
executeScript: true,
loadSidebar: true,
loadNavbar: true,
mergeNavbar: true,
maxLevel: 4,
subMaxLevel: 2,
name: 'docsify',
2021-10-15 14:11:56 +08:00
nameLink: {
'/es/': '#/es/',
'/de-de/': '#/de-de/',
'/ru-ru/': '#/ru-ru/',
'/zh-cn/': '#/zh-cn/',
'/': '#/',
},
2021-02-05 04:49:09 +08:00
search: {
noData: {
'/es/': '¡No hay resultados!',
'/de-de/': 'Keine Ergebnisse!',
'/ru-ru/': 'Никаких результатов!',
'/zh-cn/': '没有结果!',
'/': 'No results!',
},
paths: 'auto',
placeholder: {
'/es/': 'Buscar',
'/de-de/': 'Suche',
'/ru-ru/': 'Поиск',
'/zh-cn/': '搜索',
'/': 'Search',
},
2022-02-05 17:21:50 +08:00
pathNamespaces: ['/es', '/de-de', '/ru-ru', '/zh-cn'],
2019-04-14 05:22:36 +08:00
},
2021-02-05 04:49:09 +08:00
plugins: [
DocsifyCarbon.create('CEBI6KQE', 'docsifyjsorg'),
2022-02-05 17:21:50 +08:00
function (hook, vm) {
hook.beforeEach(function (html) {
2021-02-05 04:49:09 +08:00
if (/githubusercontent\.com/.test(vm.route.file)) {
url = vm.route.file
.replace('raw.githubusercontent.com', 'github.com')
.replace(/\/master/, '/blob/master');
} else if (/jsdelivr\.net/.test(vm.route.file)) {
url = vm.route.file
.replace('cdn.jsdelivr.net/gh', 'github.com')
.replace('@master', '/blob/master');
} else {
url =
2021-04-18 16:14:33 +08:00
'https://github.com/docsifyjs/docsify/blob/develop/docs/' +
2021-02-05 04:49:09 +08:00
vm.route.file;
}
var editHtml = '[:memo: Edit Document](' + url + ')\n';
return (
editHtml +
html +
'\n\n----\n\n' +
2022-03-24 00:46:36 +08:00
'< 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 > '
2021-02-05 04:49:09 +08:00
);
});
},
],
};
< / script >
< script src = "/lib/docsify.js" > < / script >
< script src = "/lib/plugins/search.js" > < / script >
< script src = "/lib/plugins/front-matter.js" > < / script >
< script src = "//cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js" > < / script >
< script src = "//cdn.jsdelivr.net/npm/prismjs/components/prism-markdown.min.js" > < / script >
< script src = "//cdn.jsdelivr.net/npm/prismjs/components/prism-nginx.min.js" > < / script >
< script src = "//cdn.jsdelivr.net/npm/prismjs/components/prism-php.min.js" > < / script >
< / body >
2018-07-01 13:48:44 +08:00
< / html >