-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
103 lines (89 loc) · 2.44 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
site_name: Solstice
site_description: Solstice is a library for scaling deep learning experiments in JAX.
site_author: Charles Jones
# site_url:
edit_uri: ""
strict: true
# Theme is based on Equinox docs... imitation is the highest form of flattery :)
theme:
logo: solstice_summer_logo.png
favicon: solstice_summer_logo.png
name: "material"
features:
- navigation.sections
- header.autohide
- content.code.annotate
- navigation.indexes
- navigation.instant
palette:
- scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
repo: fontawesome/brands/github
# custom_dir: "docs/overrides"
plugins:
- search
- autorefs
- mknotebooks
- mkdocstrings:
# detect all local changes with `mkdocs serve`, not just ones in docs/
watch:
- .
handlers:
python:
selection:
inherited_members: true
rendering:
# these defaults are to make the reference API look good,
# override if necessary for other pages
show_root_heading: false
show_root_toc_entry: false
show_root_full_path: true
show_root_members_full_path: true
show_if_no_docstring: false
show_signature_annotations: true
separate_signature: false
show_source: true
members_order: source
line_length: 80
merge_init_into_class: false
docstring_section_style: list
repo_url: https://github.com/Charl-AI/Solstice
repo_name: Charl-AI/Solstice
extra_css:
- css/style.css
- css/material.css
- css/mkdocstrings.css
markdown_extensions:
- admonition
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist
- toc:
permalink: "¤"
toc_depth: 3
nav:
- Getting Started: 'index.md'
- 'primer.md'
- 'from_flax_to_solstice.ipynb'
- API Reference:
- solstice: 'api/solstice.md'
- Miscellaneous:
- 'example_projects.md'
- 'parallelism_strategies.md'
- 'contributing.md'