forked from thejsway/thejsway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
99 lines (92 loc) · 2.1 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
site_name: The JavaScript Way
site_description: A gentle introduction to an essential language
site_author: Baptiste Pesquet
repo_url: https://github.com/thejsway/thejsway
docs_dir: manuscript
nav:
- Home: index.md
- Introduction:
- intro01.md
- intro02.md
- intro03.md
- intro04.md
- Learn to code programs:
- chapter01.md
- chapter02.md
- chapter03.md
- chapter04.md
- chapter05.md
- chapter06.md
- chapter07.md
- chapter08.md
- chapter09.md
- chapter10.md
- chapter11.md
- Create interactive web pages:
- chapter12.md
- chapter13.md
- chapter14.md
- chapter15.md
- chapter16.md
- chapter17.md
- chapter18.md
- chapter19.md
- Build web applications:
- chapter20.md
- chapter21.md
- chapter22.md
- chapter23.md
- chapter24.md
- chapter25.md
- chapter26.md
- Conclusion:
- concl01.md
- Appendices:
- appendix02.md
- concl02.md
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: red
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
# - navigation.sections
extra:
alternate:
- name: English
link: /
lang: en
- name: French
link: https://github.com/thejsway/thejsway_fr
lang: fr
- name: Spanish
link: https://github.com/thejsway/thejsway_es
lang: es
- name: Indonesian
link: https://github.com/thejsway/thejsway_id
lang: id
analytics:
provider: google
property: G-PFVDW9Q796
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite