-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
120 lines (111 loc) · 4.24 KB
/
mkdocs.yml
File metadata and controls
120 lines (111 loc) · 4.24 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
site_name: Embedded Development Blog
copyright: Copyright © 2025 - 2025 Luke Orehawa
theme:
name: material
features:
# Navigation
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/
- navigation.sections
- navigation.indexes # link an index page to its parent folder
- navigation.top # show the back-to-top button
- toc.integrate # show the table of contents in the navigation panel
# Search
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search
- search.suggest # display the likeliest completion for the last word
- search.highlight # highlight all occurrences
# Content
# https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#adding-annotations
- content.code.annotate # add comment to code blocks
palette:
#scheme: slate
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
icon:
logo: fontawesome/solid/microchip
nav:
- Home: index.md
- TechStack: techstack.md
#
# Extensions
#
markdown_extensions:
#
# Python Markdown
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/
#
- abbr # add a small tooltip to elements
- admonition # add call-out blocks
- attr_list # allow to add HTML attributes and CSS classes
- def_list # add description lists
- footnotes # define inline footnotes
- meta # attach arbitrary key-value pairs to a document
- md_in_html # allow to write Markdown inside HTML elements
- tables # create tables in Markdown
- toc: # generate a table of contents from documents
permalink: '#' # anchor
toc_depth: 4 # header 1 to header 4
#slugify: !!python/name:pymdownx.slugs.uslugify # convert title to html-compatible text
- sane_lists # make better lists
- smarty: # convert some special characters
smart_angled_quotes: true
#
# Python Markdown Extensions
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/
#
- pymdownx.arithmatex: # render math equations
generic: true
# - pymdownx.betterem: # improve the detection of Markup to emphasize text in Markdown
# smart_enable: all
- pymdownx.caret # define superscript
- pymdownx.mark # highlight text
- pymdownx.tilde # define subscript
- pymdownx.critic # track changes
- pymdownx.details # add collapsible call-outs
- pymdownx.emoji: # add inlines bundled and custom icons and emojis
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.superfences # define code blocks and nesting of code
- pymdownx.highlight: # highlight of code blocks
linenums_style: pymdownx-inline
# anchor_linenums: true # create anchor link on each line of code
- pymdownx.inlinehilite # highlight inline code blocks
- pymdownx.smartsymbols # convert some sequences of characters into their corresponding symbols
- pymdownx.snippets: # embed content from arbitrary files into a document
check_paths: true
- pymdownx.tabbed: # group related content and code blocks under accessible tabs
alternate_style: true
- pymdownx.tasklist: # define list of task with checkbox
custom_checkbox: true
- pymdownx.escapeall:
hardbreak: true # use \ to create new line
nbsp: true # use \<space> to create
# - pymdownx.keys # syntax ++ctrl+c++ does not look clear in MD document
- pymdownx.progressbar
#
# Extra extensions
#
#- markdown_captions # add caption to figures
#- customblocks # use ::: to create a new <div>
#- cell_row_span # merge cells in a table
# - kbdextension # syntax [[ctrl]][[c]] does not look clear in MD document
extra:
social:
- icon: fontawesome/brands/instagram
link: https://instagram.com/luke_embedded
generator: false # hide the line "Made with Material for MkDocs"
plugins:
- search # must be included at the first place
- blog:
blog_dir: .
authors: false
- tags