-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (81 loc) · 3.86 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
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover">
<meta name="description" content="Gabarit docsify">
<title>Gabarit docsify</title>
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://gllmar.github.io/docsify-gabarit">
<meta property="og:title" content="Docsify gabarit">
<meta property="og:description" content="Docsify Gabarit Description open graph">
<meta property="og:image" content="https://gllmar.github.io/docsify-gabarit/favicon/opengraph.drawio.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="stylesheet" href="https://gllmar.github.io/docsify-simple-style/docsify-simple-style.css">
<link rel="stylesheet" href="https://gllmar.github.io/docsify-lightbox/docsify-lightbox.css">
<!-- Custom Styles -->
<style>
:root {
--theme-hue: 300;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Docsify Gabarit',
repo: 'https://github.com/gllmAR/docsify-gabarit',
auto2top: true,
loadSidebar: true, // Enable sidebar loading
subMaxLevel: 4, // Adjust the level to include in TOC
copyCode: {
buttonText: '📄',
errorText: '⚠️',
successText: '✅ ',
},
plugins: [
// Lightbox plugin
function (hook, vm) {
hook.doneEach(() => {
import('https://gllmar.github.io/docsify-lightbox/docsify-lightbox.js').then(module => {
const images = document.querySelectorAll('img');
const lightbox = new module.default();
lightbox.initialize(images);
}).catch(err => console.error('Failed to load Lightbox plugin', err));
});
},
// WaveSurfer plugin
function (hook, vm) {
hook.doneEach(() => {
import('https://gllmar.github.io/docsify-wavesurfer-plugin/docsify-wavesurfer-plugin.js').then(module => {
module.initWaveSurfer();
}).catch(err => console.error('Failed to load WaveSurfer plugin', err));
});
}
]
};
</script>
<!-- Required -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
<!-- Import Mermaid -->
<script type="module">
import mermaid from "https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs";
mermaid.initialize({ startOnLoad: true });
window.mermaid = mermaid;
</script>
<script src="//unpkg.com/[email protected]/dist/docsify-mermaid.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script>
<script src="https://gllmar.github.io/docsify-unhashtaglink/docsify-unhashtaglink.js"></script>
<script src="https://gllmar.github.io/docsify-alert/docsify-alerts.js"></script>
</body>
</html>