-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
73 lines (70 loc) · 1.76 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
site_name: ZodiPy
site_description: Zodiacal emission simulations with python
repo_url: https://github.com/cosmoglobe/zodipy
theme:
name: "material"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
icon:
logo: material/book-open-page-variant
features:
- search.suggest
- search.highlight
- content.tabs.link
- navigation.indexes
- content.tooltips
- navigation.path
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.tabs
- navigation.instant
- navigation.top
- navigation.tabs.sticky
markdown_extensions:
- markdown_include.include:
base_path: docs
- admonition
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.arithmatex:
generic: true
- pymdownx.tabbed:
alternate_style: true
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- Overview: index.md
- introduction.md
- install.md
- usage.md
- reference.md
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
inherited_members: true
merge_init_into_class: true
members_order: source
separate_signature: true
unwrap_annotated: true
docstring_section_style: spacy
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true