-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
82 lines (81 loc) · 2.88 KB
/
index.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta charset="UTF-8">
<title>Developer Notes</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="icon" href="/head.png" type="image/x-icon"/>
<meta name="description" content="Developer Notes">
<meta name=”keyword” content="developer,notepad">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/[email protected]/lib/themes/vue.css">
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-151103127-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-151103127-1');
</script>
</head>
<body>
<!--inject-app-->
<div id="app">Developer notes</div>
<!--inject-config-->
<script>
window.$docsify = {
name: 'developer notes',
repo: 'https://github.com/ifuture-pro/developer-notes',
coverpage: true,
relativePath: true,
maxLevel:6,
subMaxLevel:6,
notFoundPage: true,
auto2top: true,
search: 'auto',
routerMode: 'hash',
formatUpdated: '{MM}/{DD} {HH}:{mm}',
plugins: [
function (hook) {
hook.beforeEach(function (content) {
return content.replace(/\$\$([\s\S]*?)\$\$/g, function (m, code) {
MathJax.Hub.Queue(["Typeset",MathJax.Hub])
return code
})
})
hook.doneEach(function () {
if (typeof MathJax !== 'undefined') {
MathJax.Hub.Queue(["Typeset", MathJax.Hub])
}
})
}
]
}
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["TeX"] }
});
</script>
<script src="//cdn.bootcss.com/mathjax/2.6.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script src="//unpkg.com/[email protected]/lib/docsify.min.js"></script>
<script src="//unpkg.com/[email protected]/lib/plugins/search.js"></script>
<script src="//unpkg.com/[email protected]/lib/plugins/zoom-image.js"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-java.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
</body>
</html>