-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
84 lines (83 loc) · 2.93 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
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Overvis Documentation</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Overvis Documentation" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-defaults.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/themes/prism-solarizedlight.min.css"
/>
<style>
:root {
--base-font-size: 14px;
--sidebar-width: 20rem;
/* --link-color: #0074d9; */
--link-color: #1488b7;
--sidebar-nav-link-color: var(--link-color);
}
.markdown-section h1 {
line-height: 1.3em;
}
.sidebar > h1 img {
max-width: 100px;
margin-top: 3px;
}
.sidebar-nav a,
.sidebar nav a {
white-space: unset;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: "Overvis Documentation",
logo: "/overvis-logo-dark.svg",
nameLink: {
"/": "#/",
"/ua/": "#/ua/",
"/pl/": "#/pl/",
},
repo: "https://github.com/overvis/overvis-docs",
relativePath: true,
themeColor: "#1488b7",
loadSidebar: true,
subMaxLevel: 3,
loadNavbar: true,
autoHeader: true,
// mergeNavbar: true,
// coverpage: true,
plugins: [
function (hook) {
var footer = [
"<hr/>",
"<footer style='font-size: 80%; line-height: 150%;'>",
'<div><a href="https://www.overvis.com/">Overvis</a> © 2023. Support: <a href="mailto:[email protected]">[email protected]</a></div>',
'<div>Discuss and edit this documentation at: <a href="https://www.github.com/overvis/overvis-docs/">https://www.github.com/overvis/overvis-docs/</a></div>',
"</footer>",
].join("");
hook.afterEach(function (html) {
return html + footer;
});
},
],
};
</script>
<!-- Docsify v4 -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-json.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-yaml.min.js"></script>
<!-- <script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script> -->
</body>
</html>