-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
81 lines (76 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
74
75
76
77
78
79
80
81
# Project information
site_name: atomicwriter
site_author: Ravencentric
site_description: Cross-platform atomic file writer for all-or-nothing operations.
# Repository
repo_name: atomicwriter
repo_url: https://github.com/Ravencentric/atomicwriter
edit_uri: edit/main/docs/
theme:
language: en
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
paths: [python]
options:
members_order: source
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__$"]
find_stubs_package: true
show_source: false
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: api-reference.md