forked from whaleal/mongodb-manual-zh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (81 loc) · 3.09 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
83
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>MongoDB 中文手册</title>
<meta name="description" content="Mongodb中文手册,教材,分享MongoDB常见问题 ">
<meta name="keywords" content="doc,docs,MongoDB,手册,中文,翻译,在线预览,MongoDB中文手册,MongoDB中文文档,MongoDB汉化文档,MongoDB 中文网">
<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="//cdn.jsdelivr.net/npm/gitalk/dist/gitalk.css">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
</head>
<body>
<div id="app"></div>
</body>
<script src="https://cdn.bootcss.com/blueimp-md5/2.10.0/js/md5.min.js"></script>
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
<script type="text/javascript">
window.$docsify = {
name: '《MongoDB中文手册》',
repo: 'https://github.com/whaleal/mongodb-manual-zh.git',
loadSidebar: 'SUMMARY.md',
subMaxLevel: 2,
formatUpdated: '{YYYY}-{MM}-{DD} {HH}:{mm}',
executeScript: true,
plugins: [
EditOnGithubPlugin.create('https://github.com/whaleal/MongoDB-Manual-zh/tree/dev/')
],
alias: {
}
}
</script>
<script type="text/javascript" src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?be45b1d7857fe784feb39634ff071d08";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<script src="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/gitalk.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/gitalk/dist/gitalk.min.js"></script>
<script>
const gitalk = new Gitalk({
clientID: '8b9dc103130e6ae0a1e9',
clientSecret: 'e5f47c0b041d6d4433747bd993b7d4ee56a957d6',
repo: 'MongoDB-Manual-zh',
owner: 'JinMuInfo',
admin: ['HbnKing','ys17513628804','liguanfei'],
id: md5(location.hash.indexOf("?")>0? location.hash.substring(0,location.hash.indexOf("?")):location.hash),
distractionFreeMode: false,
title: document.title,
body: '文章链接:'+ decodeURIComponent(location.href),
})
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YSC3188GJT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YSC3188GJT');
</script>
</html>