-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yaml
103 lines (94 loc) · 3.14 KB
/
mkdocs.yaml
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
97
98
99
100
101
102
103
site_name: EtuUTT bot Discord
site_description: Le bot du serveur Discord des étudiants de l'UTT
repo_name: EtuUTT-Discord-Bot
theme:
features:
- navigation.footer
- content.code.annotate
- content.code.copy
- content.tabs.link
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deeppurple
accent: deeppurple
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
language: fr
icon:
repo: fontawesome/brands/git-alt
favicon: img/favicon.png
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
members: true
members_order: source
show_source: true
show_inherited_members: true
merge_init_into_class: true
show_root_toc_entry: false
- search
nav:
- Accueil: index.md
- Explications:
- Accueil: explanation/index.md
- Technologies utilisées: explanation/technos.md
- Conventions: explanation/conventions.md
- Authentification par le site etu: explanation/etu-auth.md
- Tutoriels:
- Installer le projet: tutorials/install.md
- Utiliser la documentation: tutorials/doc.md
- Utilisation: howto/index.md
- Reference:
- Services:
- reference/services/channel.md
- reference/services/user.md
- reference/services/role.md
- reference/services/ue.md
- Commandes:
- reference/commands/admin.md
- reference/commands/misc.md
- reference/commands/role.md
- reference/commands/ue.md
- Serveur web: reference/web/routes.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- admonition
- attr_list
- def_list
- md_in_html
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
clickable_checkbox: true
- pymdownx.tilde:
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
toc_depth: 3
extra_css:
- stylesheets/extra.css