-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
85 lines (75 loc) · 2.4 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
site_name: Peyton Smith
theme:
name: material
logo: assets/black_logo.png
font:
text: Arial
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- navigation.top
language: en
palette:
# Palette toggle for light mode
- scheme: l_mode
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: d_mode
toggle:
icon: material/weather-night
name: Switch to light mode
extra_css:
- stylesheets/extra.css
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
markdown_extensions:
- pymdownx.arithmatex:
generic: true
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
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
# Page tree
nav:
# - 'Peyton Smith Site'
- Home: index.md
- Experience:
- Lockheed Martin: experience/lm.md
- AKW Ventures LLC: experience/akw_ventures.md
- SEC Directed Internship: experience/sec_directed_internship.md
- Aggie Sat Lab: experience/aggie_sat_lab.md
- Projects:
- Twitter Sentiment Analysis: projects/twitter_sentiment_analysis.ipynb
- Image Object Detection: projects/em_algorithm.md
- Kalman Filter: projects/kalman_filter_state_estimate_.ipynb
- AI player for Xiangqi: projects/dumbo_xiangqi_ai.md
- Multi Echo and Feedback Comb Filter: projects/multiecho_and_feedback_comb_filter.ipynb
- Eternal Flame: projects/eternal_flame_simulation.md
- Notes:
# - The Alignment Problem: notes/alignment_problem.md
- Kalman Filter: notes/kalman_filter_1d.ipynb
- Revenue Cat: notes/revenue_cat.md
- MKDocs and Github Actions: notes/mkdocs_github_actions.md
markdown_extensions:
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
plugins:
- search
- mkdocs-jupyter:
include: ["*.py", "*.ipynb"]
execute: true
# ignore: ["projects/twitter_sentiment_analysis.ipynb"]
allow_errors: false
kernel_name: python3
theme: dark