This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Aide en ligne</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<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="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="./css/doc.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
// Utilise _sidebar.md comme table des matières
loadSidebar: 'sidebar.md',
// Evite de charger des sidebar de tous les sous-dossiers alors qu'il n'y en a pas
alias: {
'/.*/sidebar.md': '/sidebar.md'
},
// Utilise _404.md comme page d'erreur pour les fichiers inexistants
notFoundPage: '404.md',
maxLevel: 4,
subMaxLevel: 2,
name: "",
nameLink: "",
// Scroll en haut de la page quand la route change
auto2top: true,
// Ouvre tous les liens externes dans un nouvel onglet par défaut
// par défaut les liens externes ont aussi rel='noopener'
externalLinkTarget: '_blank',
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: 'auto',
placeholder: 'Rechercher...',
noData: 'Pas de résultat',
depth: 6, // Headline depth, 1 - 6
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
},
pagination: {
previousText: 'Précédent',
nextText: 'Suivant',
// Permet la navigation entre chapitres
crossChapter: true,
// N'affiche pas le titre du chapitre sous les liens
crossChapterText: false
}
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
</body>
</html>