-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
185 lines (173 loc) · 4.3 KB
/
mkdocs.yml
File metadata and controls
185 lines (173 loc) · 4.3 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
# ------------------------------------------------------------------------------
#
# SECTION - Documentation Maintenance
#
# NOTE - Environment installation
# In Linux:
#
# python3 -m venv venv
# source venv/bin/activate
# pip install mkdocs
# pip install $(mkdocs get-deps)
#
# NOTE - Local development
# With:
#
# mkdocs serve
#
# Docs are locally available at http://localhost:8000/mold
#
# NOTE - More information about mkdocs and mike
# • https://www.mkdocs.org/
# • https://squidfunk.github.io/mkdocs-material/
# • https://pypi.org/project/mike
#
# NOTE - Publish docs
# Publish new version:
#
# mike deploy --push --update-aliases <REL> latest
#
# Update web default version:
#
# mike --set-default --push <REL>
#
# Keep <REL> number in sync with the mold_lib version number (see file
# alire.toml). Use only two digits, if possible.
#
# ------------------------------------------------------------------------------
site_name: Mold
site_url: https://rocher.github.io/mold
site_author: Francesc Rocher
site_description: >-
Meta-variable Operations for Lean Development.
repo_name: rocher/mold
repo_url: https://github.com/rocher/mold
# remote_branch: main
copyright:
Copyright © - 2023-2025 Francesc Rocher
theme:
name: material
logo: img/star.svg
favicon: img/favicon.ico
icon:
repo: fontawesome/brands/github
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.instant
- navigation.instant.prefetch
- navigation.footer
# - navigation.path
# - navigation.prune
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- 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:material.extensions.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:
- 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: true
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: index.md
- Overview: overview.md
- Installation: installation.md
- User Guide: user-guide.md
- Reference Guide: reference-guide.md
- Examples: examples.md
- Change Log: change-log.md
# - Contribute: contribute.md