-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
64 lines (58 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="description" content="Description">
<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/docsify/lib/themes/buble.css">
</head>
<body>
<div id="app"></div>
</body>
<script>
window.$docsify = {
repo: '',
loadSidebar: true,
loadNavbar: true,
coverpage: true,
repo: 'https://github.com/InterestingLab/seatunnel/',
name: 'seatunnel',
plugins: [
function(hook, vm) {
hook.beforeEach(function (html) {
var url = 'https://github.com/InterestingLab/seatunnel-docs/blob/master/' + vm.route.file
var editHtml = '[📝 EDIT DOCUMENT](' + url + ')\n'
return editHtml
+ html
+ '\n----\n'
+ 'Last modified 08/17 17:18 '
+ editHtml
})
}
],
alias: {
'/.*/_navbar.md': '/_navbar.md',
'/zh-cn/v1/': '/zh-cn/README.md',
'/zh-cn/v1/case_study/': '/zh-cn/case_study/',
'/zh-cn/v2/': '/zh-cn/README.md'
},
};
</script>
<!-- Add comments plugin for docsify -->
<link rel="stylesheet" href="//unpkg.com/gitalk/dist/gitalk.css">
<script src="//unpkg.com/docsify/lib/plugins/gitalk.min.js"></script>
<script src="//unpkg.com/gitalk/dist/gitalk.min.js"></script>
<script>
const gitalk = new Gitalk({
clientID: 'c422ca57da0be032bf4b',
clientSecret: 'b3668a03e69c36b5374580fc38975f977d76c0f4',
repo: 'seatunnel',
owner: 'interestinglab',
admin: ['seatunnel'],
// facebook-like distraction free mode
distractionFreeMode: false
})
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
</html>