-
Notifications
You must be signed in to change notification settings - Fork 18
/
mkdocs.yml
84 lines (79 loc) · 2.01 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
site_name: ChainConsumer
site_url: https://samreay.github.io/chainconsumer/
site_author: Samuel Hinton
edit_uri: ""
repo_name: samreay/chainconsumer
repo_url: https://github.com/samreay/chainconsumer
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- search.suggest
- search.highlight
- search.tabs.link
- navigation.expand
- toc.follow
- navigation.tracking
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: light green
toggle:
icon: material/weather-sunny
name: Switch to light mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: light green
toggle:
icon: material/weather-night
name: Switch to dark mode
plugins:
autorefs: {}
mkdocstrings:
handlers:
python:
paths: [.]
import:
- https://docs.python.org/3/objects.inv
- https://docs.pydantic.dev/latest/objects.inv
options:
members_order: source
separate_signature: true
filters: ["!^_"]
show_root_heading: true
show_if_no_docstring: true
show_signature_annotations: true
gallery:
examples_dirs: docs/examples # path to your example scripts
gallery_dirs: docs/generated/gallery # where to save generated gallery
image_srcset: ['2x']
within_subsection_order: FileNameSortKey
search: {}
markdown_extensions:
- mdx_include:
base_path: docs
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.snippets
- pymdownx.superfences
watch:
- docs
- src
nav:
- Home: index.md
- Usage: usage.md
- Python API:
- ChainConsumer: api/consumer.md
- Chain: api/chain.md
- ChainConfig: api/chainconfig.md
- Plotter: api/plotter.md
- PlotConfig: api/plotconfig.md
- Truth: api/truth.md
- Examples: generated/gallery