-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
167 lines (160 loc) · 3.85 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
site_url: https://mason.dev
site_name: Mason Egger
site_author: Mason Egger
repo_url: https://github.com/masonegger/website
repo_name: masonegger/website
extra_css:
- stylesheets/extra.css
theme:
name: material
logo: static/img/mmeg.png
favicon: static/img/favicon.png
custom_dir: overrides
locale: en
features:
- announce.dismiss
# - content.action.edit
# - content.action.view
- content.code.annotate
- content.code.copy
- content.code.select
- content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
# - navigation.footer
- navigation.indexes
# - navigation.instant
# - navigation.path
# - navigation.prune
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
# - navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
- toc.integrate
palette:
- scheme: mme
copyright: Copyright © 2018-2023 - Mason Egger
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.arithmatex:
generic: true
nav:
- Home: index.md
- About: about/index.md
- Blog:
- blog/index.md
- Tutorials:
- tutorials/index.md
- Speaking:
- speaking/index.md
- Extras: extras/index.md
plugins:
- search
- social:
cards_layout: default
cards_layout_options:
background_color: "#FEFAE0"
color: "#283618"
- tags:
tags_file: tags.md
- blog:
blog_dir: blog
blog_toc: true
post_url_format: "{slug}"
- rss:
match_path: (blog|tutorials|speaking)/posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
- blog:
blog_dir: tutorials
blog_toc: true
post_url_format: "{slug}"
- blog:
blog_dir: speaking
blog_toc: true
post_url_format: "{slug}"
extra:
generator: false
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/masonegger
name: Twitter
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/mason-egger
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/c/MasonEgger
- icon: fontawesome/brands/github
link: https://github.com/MasonEgger
- icon: fontawesome/regular/file
link: static/docs/MasonEgger-resume.pdf
- icon: fontawesome/solid/square-rss
link: ./feed_rss_created.xml
name: RSS
analytics:
provider: google
property: G-885F33V7K6
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
# Color Scheme
# 606C38
# 283618
# FEFAE0
# DDA15E
# BC6C25