-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
145 lines (134 loc) · 3.8 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
# Project information
site_name: Eric Koehli
site_description: Eric Koehli's personal portfolio website.
site_author: Eric Koehli
site_url: https://ericpko.github.io
# Repository
# repo_name: ericpko/ericpko.github.io
# repo_url: https://github.com/ericpko/ericpko.github.io
repo_name: ericpko
repo_url: https://github.com/ericpko
edit_uri: ericpko.github.io/edit/main/docs/
# Copyright
copyright: Built by <a href="http://github.com/ericpko">Eric Koehli</a> © 2022
# Configuration
theme:
name: material
language: en
favicon: assets/favicon.png
font:
text: Alegreya
# text: Noto Sans
# text: Roboto
code: Roboto Mono
icon:
logo: fontawesome/solid/code
repo: fontawesome/brands/github
features:
- header.autohide
- navigation.tabs
- navigation.sections
- navigation.top
- toc.follow
# - toc.integrate
- search.highlight
- search.suggest
palette:
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: white
accent: red
toggle:
icon: material/weather-sunny
name: Switch to light mode
# Light theme
- media: "(prefers-color-scheme: light)"
scheme: carbon
primary: indigo
accent: red
toggle:
icon: material/weather-night
name: Switch to dark mode
# Footer
extra:
social:
- icon: fontawesome/brands/github-square
link: https://github.com/ericpko
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/erickoehli
# - icon: material/book-open-page-variant
# link: https://ericpko.github.io
extra_css:
- assets/css/extra.css
extra_javascript:
- assets/js/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Markdown extensions
markdown_extensions:
# MathJax
- pymdownx.arithmatex:
generic: true
# Admonition
- admonition
- pymdownx.details # https://facelessuser.github.io/pymdown-extensions/extensions/details/
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
# linenums: true
# linenums_style: table
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
# Used for images: https://squidfunk.github.io/mkdocs-material/reference/images/
- attr_list
- md_in_html
- meta
# Formatting text
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
# Icons + Emojis
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:materialx.emoji.twemoji
# Lists
- def_list
- pymdownx.tasklist:
custom_checkbox: true
# Sidebar
- toc:
permalink: ⚓︎
# Plugins
plugins:
- search:
lang:
- en
# ---------- Navigation ----------
# This section isn't needed and MkDocs will set it up based on the file structure etc.
# but the problem is that it puts my tabs in a random order.
# You can put - Name: file/location.md and this will make the sidebar say "Name"
# or you can put - file/location.md and this will make the sidebar say whatever
# the first '# Something' is in the file/location.md
nav:
- Home: index.md
- Projects:
- Billard Balls: projects/billard-balls.md
- Boids: projects/boids.md
- projects/sph-sim.md
- Ray Tracer: projects/ray-tracer.md
- A Weathery Journey: projects/a-weathery-journey.md
- Loop:
- loop/index.md
- Problems:
- Matrices:
- Looping Diagonally: loop/problems/matrices/looping-diagonally.md
- Raster Graphics:
- Raster Images: loop/problems/raster graphics/01-raster-images.md
- loop/problems/raster graphics/02-accessing-rgb.md
- loop/problems/raster graphics/03-applying-convolution.md
- Contact: contact.md