-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
172 lines (157 loc) · 4.5 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
site_name: Alice
site_url: https://alice-adventures.github.io
site_author: Francesc Rocher
site_description: >-
Unlock the power of Ada and strive for coding excellence with Alice. This
comprehensive documentation is your gateway to tackling intriguing problems,
enhancing your programming skills, and joining a community of developers and
participants. Discover the possibilities, explore the resources, and embark on
a journey of coding mastery. Welcome to Alice, your gateway to coding
excellence.
repo_name: alice-adventures/alice
repo_url: https://github.com/orgs/alice-adventures/alice
copyright:
Copyright © - 2023 Francesc Rocher
theme:
name: material
icon:
repo: fontawesome/brands/git-alt
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
# scheme: slate
# primary: custom
font:
text: Noto Sans
code: Fira Code
features:
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.path
# - navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- toc.integrate
- toc.follow
# highlightjs: true
# hljs_style: xcode
# hljs_languages:
# - ada
# - bash
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- meta
- toc:
# permalink: "¶"
permalink: "🔗"
permalink_title: Anchor link to this section for reference
# PyMdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.mark
- pymdownx.snippets:
# base_path:
# - docs/snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.critic
# - pymdownx.caret
- pymdownx.keys
- pymdownx.mark
# - pymdownx.tilde
extra_css:
- https://fonts.googleapis.com/css?family=Oswald:300,300i,400,400i,500,500i
- css/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- glightbox:
effect: none
touchNavigation: false
zoomable: false
width: 80%
draggable: false
skip_classes:
- skip-lightbox
- offline
- search
- mike
# - tags:
# tags_file: tags.md
extra:
version:
provider: mike
# extra:
# consent:
# title: Cookie consent
# description:
# We use cookies to recognize your repeated visits and preferences, as well
# as to measure the effectiveness of our documentation and whether users
# find what they're searching for. With your consent, you're helping us to
# make our documentation better.
nav:
- HOME:
- Home: index.md
- About: about.md
- Test: test.md
- " For Participants ":
- participant/index.md
- Project Euler: participant/Project_Euler.md
- CodinFame: participant/CodinGame.md
- Advent of Code : participant/Advent_of_code.md
- " For Developers ":
- developer/index.md
# nav:
# - ALICE:
# - Introduction: index.md
# - 'Map of Contents': map-of-contents.md
# - Resources: resources.md
# - 'Getting Started': getting-started.md
# - 'Collaboration Roles': collaboration-roles.md
# - 'Coding Excellence': coding-excellence.md
# # - About: about.md
# # - " For Participants ":
# # - participant/index.md
# # - Project Euler: participant/Project_Euler.md
# # - CodinFame: participant/CodinGame.md
# # - Advent of Code : participant/Advent_of_code.md
# # - " For Developers ":
# # - developer/index.md
# * SECTION - PUBLISH DOCS
# • Locally develop and inspect with 'mkdocs serve'
# • Publish new version with 'mike deploy --push --update-aliases REL latest'
# • Update web default version with 'mike --set-default --push REL'