-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (58 loc) · 2.21 KB
/
index.html
File metadata and controls
58 lines (58 loc) · 2.21 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
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<title>lxbot.io</title>
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/prism-themes/themes/prism-atom-dark.css">
<link rel="stylesheet" href="style.css">
<meta property="og:title" content="lxbot document">
<meta property="og:url" content="https://lxbot.io">
<meta property="og:type" content="website">
<meta property="og:description" content="Lightweight eXtensible BOT. Aims hubot alternative.">
<meta property="og:site" content="lxbot.io">
<meta property="og:image" content="https://lxbot.io/assets/icon.png">
</head>
<body>
<div id="app"></div>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default%2CArray.from%2CArray.prototype.forEach"></script>
<script>
window.$docsify = {
subMaxLevel: 3,
auto2top: true,
coverpage: true,
loadSidebar: true,
loadNavbar: true,
mergeNavbar: true,
autoHeader: true,
name: 'lxbot',
themeColor: '#bc91c7',
search: {
paths: 'auto',
},
repo: 'lxbot/lxbot',
plugins: [
function(hook, vm) {
hook.doneEach(function() {
Array.from(document.querySelectorAll('pre[data-lang]')).forEach(function(element) {
element.classList.add('language-' + element.dataset.lang);
Array.from(element.querySelectorAll('code[class*=lang]')).forEach(function(elem) {
elem.classList = [];
elem.classList.add('language-' + element.dataset.lang);
});
});
});
}
]
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-go.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-yaml.min.js"></script>
<script src="//unpkg.com/docsify-plantuml/dist/docsify-plantuml.min.js"></script>
</body>
</html>