mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-11-30 02:58:37 +08:00
69 lines
2.1 KiB
HTML
69 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<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>
|
|
<style>
|
|
nav.app-nav li ul {
|
|
min-width: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
window.$docsify = {
|
|
alias: {
|
|
'.*?/changelog': 'https://raw.githubusercontent.com/docsifyjs/docsify/master/CHANGELOG',
|
|
'/.*/_navbar.md': '/_navbar.md',
|
|
'/zh-cn/(.*)': 'https://raw.githubusercontent.com/docsifyjs/docs-zh/master/$1',
|
|
'/de-de/(.*)': 'https://raw.githubusercontent.com/docsifyjs/docs-de/master/$1',
|
|
'/ru/(.*)': 'https://raw.githubusercontent.com/docsifyjs/docs-ru/master/$1',
|
|
'/es/(.*)': 'https://raw.githubusercontent.com/docsifyjs/docs-es/master/$1'
|
|
},
|
|
notFoundPage: '_404.html',
|
|
auto2top: true,
|
|
basePath: '/docs/',
|
|
executeScript: true,
|
|
loadNavbar: true,
|
|
loadSidebar: true,
|
|
coverpage: true,
|
|
name: 'docsify',
|
|
subMaxLevel: 2,
|
|
mergeNavbar: true,
|
|
formatUpdated: '{MM}/{DD} {HH}:{mm}',
|
|
plugins: [
|
|
function (hook, vm) {
|
|
hook.beforeEach(function (html) {
|
|
var url
|
|
if (/githubusercontent\.com/.test(vm.route.file)) {
|
|
url = vm.route.file
|
|
.replace('raw.githubusercontent.com', 'github.com')
|
|
.replace(/\/master/, '/blob/master')
|
|
} else {
|
|
url = 'https://github.com/docsifyjs/docsify/blob/master/' + vm.route.file
|
|
}
|
|
var editHtml = '[:memo: Edit Document](' + url + ')\n'
|
|
|
|
return editHtml
|
|
+ html
|
|
+ '\n\n----\n\n'
|
|
+ 'Last modified {docsify-updated} '
|
|
+ editHtml
|
|
})
|
|
}
|
|
]
|
|
}
|
|
</script>
|
|
<script src="/lib/docsify.js"></script>
|
|
</body>
|
|
|
|
</html>
|