-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yaml
58 lines (52 loc) · 1.62 KB
/
mkdocs.yaml
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
theme:
name: material
features:
- navigation.sections # Sections are included in the navigation on the left.
- toc.integrate # Table of contents is integrated on the left; does not appear separately on the right.
- header.autohide # header disappears as you scroll
- search.suggest
- search.highlight
palette:
- scheme: default
primary: deep purple
#logo: "images/delta.png" # logo in top left
logo: "images/icon.svg" # logo in top left
favicon: "images/icon.svg"
extra_css:
- "static/extra.css"
site_name: sensitivity_jax
site_description: The documentation for the sensitivity_jax package.
site_author: Robert Dyro
site_url: https://rdyro.github.io/sensitivity_jax/
repo_url: https://github.com/rdyro/sensitivity_jax/
repo_name: rdyro/sensitivity_jax
strict: false
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences:
- toc:
toc_depth: 2
hooks:
- build_api_ref.py
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
setup_commands:
- import pytkdocs_tweaks
- pytkdocs_tweaks.main()
options:
inherited_members: true
show_root_heading: true
show_if_no_docstring: true
show_signature_annotations: false
heading_level: 4
members_order: source
nav:
- Overview: 'index.md'
- Installation: 'installation.md'
- Tour: 'tour.md'
- Full API: 'api/overview.md'