forked from docsifyjs/docsify
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.html
More file actions
Latest commit
53 lines (52 loc) Β· 1.48 KB
/
Copy pathdev.html
File metadata and controls
53 lines (52 loc) Β· 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>docsify</title>
<metahttp-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<metaname="viewport" content="width=device-width,initial-scale=1">
<linkrel="stylesheet" href="/themes/vue.css" title="vue">
<linkrel="stylesheet" href="/themes/dark.css" title="dark" disabled>
<linkrel="stylesheet" href="/themes/buble.css" title="buble" disabled>
<style>
nav.app-navliul {
min-width:100px;
}
</style>
</head>
<body>
<divid="app"></div>
<script>
window.$docsify={
alias: {
'.*?/changelog': 'https://raw.githubusercontent.com/QingWei-Li/docsify/master/CHANGELOG',
'/.*/_navbar.md': '/_navbar.md'
},
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){
varurl='https://github.com/QingWei-Li/docsify/blob/master/'+vm.route.file
vareditHtml='[:memo: Edit Document]('+url+')\n'
returneditHtml
+html
+'\n----\n'
+'Last modified {docsify-updated} '
+editHtml
})
}
]
}
</script>
<scriptsrc="/lib/docsify.js"></script>
</body>
</html>