-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
195 lines (174 loc) · 7.88 KB
/
mkdocs.yml
File metadata and controls
195 lines (174 loc) · 7.88 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
186
187
188
189
190
191
192
193
194
195
site_name: Embedded AI Robotics Lab
site_description: A projects documentation and a blogging site
site_url: https://lichtenbergcode.github.io/
docs_dir: docs # Obsidian Vault
# Custom Homepage Elements
home_cover_image: img/MyRobot.png # This path starts at your root mkdocs directory.
home_tagline: Robotics & AI Embedded Systems Documentation
home_description: |
This site contains structured documentation for my robotics, embedded control and applied AI projects. The goal is to provide clear and reproducible technical references.
# Gradient Color
home_gradient_hsla: var(--md-accent-fg-color) # hsla(160deg,47%,55%,1) # Default Green: hsla(160deg,47%,55%,1)
# Custom Homepage Button(s)
home_button1_name: Main Clicky # Comment this parameter out to remove the button.
home_button1_url: Folder1/ # This path starts at your root mkdocs directory.
home_button1_theme: md-button md-button--primary # Options: "md-button", "md-button md-button--primary"
home_button1_icon: people # Options: "people", "gear", "image"
home_button1_blurb: | # Short description of this button / section.
This joker navigates to the shadow wizard armory located in "/Folder1/index.md"
home_button2_name: Clicky 2 # Comment this parameter out to remove the button.
home_button2_url: Folder2/ # This path starts at your root mkdocs directory.
home_button2_theme: md-button # Options: "md-button", "md-button md-button--primary"
home_button2_icon: gear # Options: "people", "gear", "image"
home_button2_blurb: | # Short description of this button / section.
This goober navigates to some important thingies located in "/Folder2/index.md"
home_button3_name: Clicky 3 # Comment this parameter out to remove the button.
home_button3_url: Folder3/ # This path starts at your root mkdocs directory.
home_button3_theme: md-button # Options: "md-button", "md-button md-button--primary"
home_button3_icon: image # Options: "people", "gear", "image"
home_button3_blurb: | # Short description of this button / section.
This psycho navigates to an interesting table of stuff located in "/Folder3/index.md"
# Homepage Code Execution
home_execute_js: | # Javascript to execute when accessing the homepage
nav:
- Home: index.md
#- About: about.md
#icon: fontawesome/solid/user
#- My Blog Entries: blog.md
- Projects:
- 'Start Here': projects/index.md
- 'tello-leader-follower-scheme':
- 'Overview': projects/tello-leader-follower-scheme/tello-leader-follower-scheme.md
- 'Installation': projects/tello-leader-follower-scheme/install.md
- 'User guide': projects/tello-leader-follower-scheme/user-guide.md
#- 'Features': projects/tello-leader-follower-scheme/features.md
#- 'Functionalities': projects/tello-leader-follower-scheme/functionalities.md
- 'tello-pid-altitude':
- 'Overview': projects/tello-pid-altitude/tello-pid-altitude-control.md
- 'Installation': projects/tello-pid-altitude/install.md
- 'User guide': projects/tello-pid-altitude/user-guide.md
#- 'Features': projects/tello-pid-altitude/features.md
#- 'Functionalities': projects/tello-pid-altitude/functionalities.md
#- 'Architecture': projects/tello-pid-altitude/architecture.md
- 'tello-user-control':
- 'Overview': projects/tello-control-gui/tello-control-gui.md
- 'Installation': projects/tello-control-gui/install.md
- 'User guide': projects/tello-control-gui/user-guide.md
#- 'Features': projects/tello-control-gui/features.md
#- 'Functionalities': projects/tello-control-gui/functionalities.md
#- 'Architecture': projects/tello-control-gui/architecture.md
#- 'Dev Notes':
# - 'Data Structures and Algorithms':
# - 'Big O Notation' : dev-notes/data-structures-algorithms/big-o-notation.md
# - 'Edge Cases' : dev-notes/data-structures-algorithms/edge-cases.md
# - 'Data Structures' : dev-notes/data-structures-algorithms/data-structures.md
# - 'Algorithms' : dev-notes/data-structures-algorithms/algorithms.md
# - 'Practical DSA': dev-notes/data-structures-algorithms/practical-DSA.md
# # - 'Python Data Structures': dev-notes\data-structures-algorithms\python-data-structures.ipynb
# - 'Linear Algebra':
# - 'Overview': dev-notes/linear-algebra/overview.ipynb
# - 'Vectors': dev-notes/linear-algebra/vectors.ipynb
# - 'Vectors applied': dev-notes/linear-algebra/vectors_applied.ipynb
# - 'Matrix': dev-notes/linear-algebra/matrix.ipynb
# - 'Matrix applied': dev-notes/linear-algebra/matrix_applied.ipynb
# #- etc...
# - 'Statistics':
# - 'Overview': dev-notes/statistics/overview.ipynb
# - 'Control Theory':
# - 'Overview': dev-notes/control-theory/overview.md
#- 'Interviews':
# - 'Non technical interviews': dev-notes/interview-preparation/non-technical-interview.md
# - 'Technical interviews': dev-notes/interview-preparation/technical-interview.md
#- 'Archieve':
# - 'Index': blog/index.md
# - 'HailoRT Installation in Ubuntu for ARM architecture': hailoRT-installation.md
theme:
name: material
languages: es
custom_dir: assets
font:
text: Merriweather Sans
code: Red Hat Mono
icon:
logo: fontawesome/solid/robot
favicon: img/robot-head.ico
features:
- content.tabs.link
- header.autohide
- announce.dismiss
- navigation.footer
- navigation.indexes
# - navigation.sections
# - navigation.instant
- navigation.tabs
- navigation.top
# - navigation.expand
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- content.code.copy
- content.code.annotate
palette:
- scheme: slate
primary: black
accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
- scheme: default
primary: black
accent: teal
toggle:
icon: material/weather-sunny
name: Switch to dark mode
extra_css:
- stylesheets/extra.css
plugins:
- search
- include-markdown
- mermaid2
- mkdocs-jupyter
#- video
- blog:
blog_toc: true
active_date_format: yyyy
active_url_date_formar: yyyy
#categories_allowed:
# - Tech
# - ROS 2
# - Drone Control
# - Hailo-8
# - Raspberry Pi
# - Linux
# - IA
post_url_format: "{slug}"
authors_profiles: true
- tags:
tags_file: tags.md
markdown_extensions:
- admonition
- attr_list
- footnotes
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span # added
pygments_lang_class: true # added
- pymdownx.inlinehilite
- pymdownx.superfences # added
- pymdownx.snippets
- pymdownx.mark
- pymdownx.arithmatex:
generic: true
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/LichtenbergCode
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/albertolombera21/
copyright: |
© 2025 <a href="https://github.com/LichtenbergCode" target="_blank" rel="noopener">Alberto Lombera</a>