-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
84 lines (79 loc) · 2.08 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
# Project information
site_name: nzb
site_author: Ravencentric
site_description: A spec compliant parser and meta editor for NZB files
# Repository
repo_name: nzb
repo_url: https://github.com/Ravencentric/nzb
edit_uri: edit/main/docs/
theme:
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
name: material
font:
text: Noto Sans
palette:
primary: black
accent: light-blue
scheme: slate
features:
- navigation.instant
- navigation.tracking
- toc.follow
- navigation.top
- search.suggest
- search.highlight
- content.action.edit
- content.action.view
- content.code.copy
- content.code.annotate
plugins:
- search
- autorefs
- mkdocstrings:
enabled: true
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://typing-extensions.readthedocs.io/en/latest/objects.inv
- https://docs.pydantic.dev/latest/objects.inv
paths: [src]
options:
allow_inspection: false
docstring_style: numpy
show_root_heading: true
show_root_full_path: false
show_signature_annotations: true
separate_signature: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
merge_init_into_class: true
filters: ["!^_", "^__init__$"]
markdown_extensions:
- md_in_html
- attr_list
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
url_download: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- Home: index.md
- API Reference:
- Parser: api-reference/parser.md
- Meta Editor: api-reference/meta-editor.md
- Models: api-reference/models.md
- Types: api-reference/types.md
- Exceptions: api-reference/exceptions.md