-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
32 lines (32 loc) · 967 Bytes
/
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
site_name: NanoDL Documentation
theme:
name: readthedocs
highlightjs: true
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_section_style: "list"
members_order: "source"
show_root_heading: true
show_source: false
show_signature_annotations: false
selection:
inheritance: true
filters:
- "!^_[^_]" # Exclude members starting with a single underscore
rendering:
show_category_heading: true
heading_level: 3
docstring_styles: ["google", "numpy", "restructuredtext", "plain", "markdown"]
cross_references:
use_short_names: true
fail_on_missing_reference: false
introspection:
modules: ["nanodl"]
markdown_extensions:
- markdown_include.include:
base_path: .
- admonition