-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
67 lines (61 loc) · 1.6 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
site_name: calibr
site_description: "Documentation website for calibr"
site_author: "Matt Graham"
copyright: "Copyright © 2024 University College London"
repo_url: "https://github.com/UCL/calibr/"
repo_name: "UCL/calibr"
edit_uri: edit/main/docs/
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
theme:
name: "material"
features:
- content.action.edit
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
icon:
repo: fontawesome/brands/github
nav:
- Overview: index.md
- API reference: api.md
- License: LICENSE.md
markdown_extensions:
- pymdownx.tasklist
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
docstring_style: google
import:
- "https://docs.python.org/3/objects.inv"
- "https://numpy.org/doc/stable/objects.inv"
- "https://jax.readthedocs.io/en/latest/objects.inv"
paths: [src]
options:
show_submodules: true
separate_signature: true
line_length: 88
- include-markdown:
opening_tag: "{!"
closing_tag: "!}"
extra:
social:
- icon: fontawesome/brands/github
link: "https://github.com/UCL"