-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
121 lines (102 loc) · 4.05 KB
/
mkdocs.yml
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
site_name: "De Jupyter à MkDocs"
site_url: https://ens-fr.gitlab.io/mkdocs
repo_url: https://gitlab.com/ens-fr/mkdocs
edit_uri: tree/master/docs/
site_description: Tutoriel pour MkDocs Material
copyright: |
Copyleft 🄯 2021 <a href="https://lyc-84-bollene.gitlab.io/chambon/" target="_blank" rel="noopener">Franck CHAMBON</a>
docs_dir: docs
nav:
- "Installation de MkDocs": index.md
- "Bases de Markdown": markdown-bases.md
- "Markdown pour MkDocs": markdown-mkdocs.md
- "Écrire des maths": maths.md
- "Élaboration du site": setup-mkdocs.md
- "Recettes simples": recettes_1.md
- "Hébergement du site": gitlab-mkdocs.md
- "Recettes élaborées": recettes_2.md
- "Bonus": 1-binaire/1-binaire.md
theme:
name: material
font: false # RGPD ; pas de fonte Google
language: fr # français
palette: # Palettes de couleurs jour/nuit
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Passer au mode nuit
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/weather-night
name: Passer au mode jour
features:
- navigation.instant
- navigation.tabs
- navigation.expand
- navigation.top
- toc.integrate
- header.autohide
markdown_extensions:
- meta
- abbr
- def_list # Les listes de définition.
- attr_list # Un peu de CSS et des attributs HTML.
- footnotes # Notes[^1] de bas de page. [^1]: ma note.
- admonition # Blocs colorés !!! info "ma remarque"
- pymdownx.details # qui peuvent se plier/déplier.
- pymdownx.caret # Passage ^^souligné^^ ou en ^exposant^.
- pymdownx.mark # Passage ==surligné==.
- pymdownx.tilde # Passage ~~barré~~ ou en ~indice~.
- pymdownx.highlight # Coloration syntaxique du code
- pymdownx.inlinehilite # pour `#!python <python en ligne>`
- pymdownx.snippets # Inclusion de fichiers externe.
- pymdownx.tasklist: # Cases à cocher - [ ] et - [x]
custom_checkbox: false # avec cases d'origine
clickable_checkbox: true # et cliquables.
- pymdownx.tabbed # Volets glissants. === "Mon volet"
- pymdownx.superfences # Imbrication de blocs.
- pymdownx.keys: # Touches du clavier. ++ctrl+d++
separator: "\uff0b"
- pymdownx.emoji: # Émojis :boom:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.arithmatex:
generic: true
- toc:
permalink: ⚓︎
toc_depth: 3
extra:
social:
- icon: fontawesome/brands/gitlab
link: https://gitlab.com/ens-fr
name: Enseignement en français
- icon: fontawesome/brands/discourse
link: https://mooc-forums.inria.fr/moocnsi/
name: Le forum des enseignants de NSI
- icon: fontawesome/brands/linux
link: https://linuxfr.org/
name: Promouvoir les Logiciels libres
- icon: fontawesome/brands/wikipedia-w
link: https://fr.wikipedia.org
name: L'encyclopédie libre que chacun peut améliorer
- icon: fontawesome/solid/paper-plane
link: mailto:franck.chambon@ac-aix-marseille.fr
name: Écrire à l'auteur
site_url: https://ens-fr.gitlab.io/mkdocs/
plugins:
- search
- macros
extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://unpkg.com/mermaid@8.9.2/dist/mermaid.min.js
- javascripts/mermaid.js
extra_css:
- stylesheets/extra.css