-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
135 lines (127 loc) · 3.36 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
site_name: Today I Learned
site_url: https://simonmarquis.github.io/TIL/
repo_name: TIL
repo_url: https://github.com/SimonMarquis/TIL
edit_uri: edit/main/docs/
site_author: Simon Marquis
remote_branch: gh-pages
copyright: 'Copyright © 2023 Simon Marquis'
theme:
name: material
logo: "data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22256%22 height=%22256%22 viewBox=%220 0 100 100%22><text x=%2250%%22 y=%2250%%22 dominant-baseline=%22central%22 text-anchor=%22middle%22 font-size=%2290%22>🗓️</text></svg>"
favicon: "data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22256%22 height=%22256%22 viewBox=%220 0 100 100%22><text x=%2250%%22 y=%2250%%22 dominant-baseline=%22central%22 text-anchor=%22middle%22 font-size=%2290%22>🗓️</text></svg>"
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/brightness-4
name: Switch to light mode
custom_dir: theme
features:
- content.action.edit
- content.action.view
- content.tabs.link
- content.code.copy
- content.code.annotate
- navigation.instant
- navigation.indexes
- navigation.top
- navigation.tracking
- search.highlight
- toc.follow
markdown_extensions:
- admonition
- attr_list
- def_list
- md_in_html
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
- tables
- toc:
permalink: true
plugins:
- search
- git-revision-date-localized:
enabled: !ENV [CI, GITHUB_ACTIONS, False]
enable_creation_date: true
exclude:
- index.md
- macros:
verbose: true
on_error_fail: true
on_undefined: strict
j2_block_start_string: '{{{%'
j2_block_end_string: '%}}}'
j2_variable_start_string: '{{{'
j2_variable_end_string: '}}}'
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/SimonMarquis
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/simonmarquis
- icon: fontawesome/solid/user
link: https://www.simon-marquis.fr
key: value
nav:
- index.md
- android.md
- bash.md
- chrome.md
- css.md
- dagger.md
- firebase.md
- gerrit.md
- git.md
- github.md
- gradle.md
- html.md
- intellij-idea.md
- java.md
- javascript.md
- junit.md
- kotlin.md
- mac.md
- markdown.md
- miscellaneous.md
- mkdocs.md
- online-tools.md
- open-source-projects.md
- puzzlers.md
- regex.md
- sublime-merge.md
- sublime-text.md
- utils.md
- windows.md
- yaml.md
extra_css:
- stylesheets/extra.css
strict: !ENV [MKDOCS_STRICT, True]
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn