forked from teamtomo/libtilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
73 lines (71 loc) · 1.9 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: libtilt
repo_name: teamtomo/libtilt
repo_url: https://github.com/teamtomo/libtilt
copyright: Copyright © 2022 - 2022 Alister Burt
theme:
name: material
icon:
logo: material/cube-scan
palette:
- scheme: default
primary: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: pink
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- search.highlight
- search.suggest
- content.tabs.link
plugins:
- mkdocstrings:
watch:
- source_spacing/libtilt
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
selection:
docstring_style: numpy
filters: [ "!^_" ]
rendering:
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: true
show_object_full_path: false
# show_root_members_full_path: false
# show_category_heading: false
show_if_no_docstring: false
# show_signature: true
show_signature_annotations: true
show_source: true
# show_bases: true
# group_by_category: true
# heading_level: 2
members_order: source # alphabetical/source
## experimental
docstring_section_style: spacy # or table/list/spacy
nav:
- index.md
- Examples:
- examples/real_space.md
- examples/fourier_space.md
- API:
- API/real_space.md
- API/fourier_space.md
- API/transformations.md
- API/coordinates.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- stylesheets/extra.css