forked from JohnGiorgi/mathematics-for-machine-learning
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
43 lines (38 loc) · 1.11 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
# Project information
site_name: Mathematics for Machine Learning
site_author: 'John Giorgi'
site_url: 'https://johngiorgi.github.io/mathematics-for-machine-learning/'
# Repository
repo_name: 'JohnGiorgi/mathematics-for-machine-learning'
repo_url: 'https://github.com/JohnGiorgi/mathematics-for-machine-learning'
# Configuration
theme:
name: 'material'
language: 'en'
palette:
primary: 'red'
accent: 'teal'
# Customization
extra:
social:
- type: 'github'
link: 'https://github.com/JohnGiorgi'
# Navigation
nav:
- About: index.md
- Linear Algebra:
- Course Resources: linear_algebra/course_resources.md
- Week 1: linear_algebra/week_1.md
- Week 2: linear_algebra/week_2.md
- Week 3: linear_algebra/week_3.md
- Week 4: linear_algebra/week_4.md
- Week 5: linear_algebra/week_5.md
- Calculus: calculus.md
# Add MathJax support
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
markdown_extensions:
- pymdownx.arithmatex
- pymdownx.details
- pymdownx.superfences
- admonition