-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
91 lines (86 loc) · 2.92 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
85
86
87
88
89
90
91
site_name: NGLui Documentation
site_url: https://caveconnectome.github.io/nglui/
repo_url: https://github.com/CAVEconnectome/nglui/
repo_name: CAVEconnectome/NGLui
nav:
- About: index.md
- How to Use:
- usage/statebuilder.md
- usage/config.md
- usage/segmentprops.md
- usage/parser.md
- Function Reference:
- reference/segmentprops.md
- reference/statebuilder.md
- reference/easyviewer.md
- reference/parser.md
- reference/site_utils.md
- Changelog: changelog.md
theme:
name: material
language: en
palette:
primary: blue grey
accent: deep orange
font:
text: Bitter
code: Inconsolata
icon:
repo: fontawesome/brands/github
features:
- navigation.indexes
- navigation.instant
# - navigation.footer
# - navigation.path
- navigation.prune
# - navigation.sections # toggle to have sections in side nav
- navigation.tabs # toggle to mainly use top nav
- navigation.tabs.sticky
- toc.follow
- toc.integrate # whether to include the toc in the main nav bar to the left
- navigation.top
- search.suggest
- search.highlight
- search.share
- content.code.copy
- header.autohide
markdown_extensions:
- admonition
- attr_list
- md_in_html
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://pandas.pydata.org/pandas-docs/stable/objects.inv
paths: [.]
options:
show_source: false
docstring_style: numpy
docstring_section_style: list # list, table, spacy
docstring_options:
ignore_init_summary: false
merge_init_into_class: true
allow_section_blank_line: false
show_root_heading: false
show_root_toc_entry: false
show_object_full_path: false
show_symbol_type_heading: false # whether to show "meth/func/etc" in the page
show_symbol_type_toc: false # whether to show "meth/func/etc" in the toc
signature_crossrefs: true # https://mkdocstrings.github.io/python/usage/configuration/signatures/#signature_crossrefs
members_order: alphabetical # can be source
group_by_category: true # order is attributes, classes, functions, modules
summary: true
show_if_no_docstring: false
show_docstring_attributes: false
annotations_path: brief # https://mkdocstrings.github.io/python/usage/configuration/signatures/#annotations_path
show_signature: true
separate_signature: false
show_signature_annotations: false
unwrap_annotated: false # https://mkdocstrings.github.io/python/usage/configuration/signatures/#unwrap_annotated
heading_level: 2
inherited_members: true