-
Notifications
You must be signed in to change notification settings - Fork 89
/
mkdocs.yml
43 lines (40 loc) · 961 Bytes
/
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
site_name: JaxMARL Documentation
site_url: https://jaxmarl.foersterlab.com
repo_url: https://github.com/flairox/jaxmarl
theme:
name: material
features:
- navigation.sections
palette:
# Dark Mode
- scheme: slate
toggle:
icon: material/weather-sunny
name: Dark mode
primary: green
accent: deep purple
# Light Mode
- scheme: default
toggle:
icon: material/weather-night
name: Light mode
primary: blue
accent: deep orange
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [../examples,../jaxmarl,..]
options:
show_docstring_examples: true
show_root_heading: false
show_source: False
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences