-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmkdocs.yaml
62 lines (57 loc) · 1.34 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
site_name: Gabarit documentation
repo_url: https://github.com/France-Travail/gabarit
repo_name: France-Travail/gabarit
theme:
name: material
palette:
- scheme: default # light mode
toggle:
icon: material/weather-night
name: Switch to dark mode
primary: light blue
- scheme: slate # dark mode
toggle:
icon: material/weather-sunny
name: Switch to dark mode
primary: light blue
features:
- content.code.copy
nav:
- Home: index.md
- Frameworks:
- frameworks/index.md
- NLP: frameworks/NLP.md
- NUM: frameworks/NUM.md
- VISION: frameworks/VISION.md
- API: frameworks/API.md
- Reference: reference/
plugins:
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings
- search
- section-index
markdown_extensions:
- admonition
- def_list
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.critic
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tilde