-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmkdocs.yml
78 lines (77 loc) · 2.69 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
site_name: Python Foundations
theme:
# features:
# - navigation.top
name: "material"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
nav:
- About: index.md
- Introduction: introduction.md
- Sessions:
- Introduction to Python and Jupyter: S1_Python_and_Jupyter.md
- Data Structures and Flow Control: S2_Data_Structures_and_Flow.md
- Functions and Debugging: S3_Functions_and_Debugging.md
- Object Oriented Programming: S4_Object_Oriented_Programming.md
- Pandas: S5_Pandas.md
- Matplotlib: S6_Matplotlib.md
- NumPy: S7_Numpy.md
- Labs:
- Practice with Python and Jupyter Notebooks: labs/L1_Python_and_Jupyter.md
- Practice with Flow Control: labs/L2_Flow_Control.md
- Practice with Functions: labs/L3_Functions.md
- Practice with Pandas: labs/L4_Pandas.md
- Practice Data Visualization: labs/L5_Visualization.md
- Practice with NumPy: labs/L6_Numpy.md
- Project:
- Building TicTacToe in Python: project/P1_Building_TicTacToe_in_Python.md
- Object Oriented Programming in Python: project/P2_OOP_in_TicTacToe.md
- Random TicTacToe Agents: project/P3_Random_TicTacToe_Agents.md
- Debugging TicTacToe Agents: project/P4_Debugging_TicTacToe_Agents.md
- Extras:
- Spotify API: extras/X1_Spotify_API.md
- Additional Exercises: extras/X2_Additional_Exercises.md
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- mdx_math
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tilde
# - pymdownx.superfences # causes weird hilighting
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra:
generator: false
analytics:
provider: google
property: "UA-114664473-1"
extra_css: [extra.css, styles.css]
copyright: Copyright © 2022 Wesley Beckner
# repo_url: https://github.com/wesleybeckner/python_foundations
# repo_name: python_foundations
# edit_uri: ""
# for generating styles.css for codehilite see:
# https://python-markdown.github.io/extensions/code_hilite/