-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (71 loc) · 3.15 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="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="Françoise Lavoie-Pilote">
<title>UQAM</title>
<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:2;
--theme-brightness:60%;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Médias',
repo: 'https://github.com/francoiselavoie/video',
auto2top: true,
loadSidebar: false, // disable 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>
<script src="https://gllmar.github.io/docsify-repo-toolbar/docsify-repo-toolbar.js"></script>
</body>
</html>