generated from obendidi/python-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
61 lines (53 loc) · 1.49 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
site_name: Pstock
site_description: Async yahoo-finance python api with pydantic models.
site_url: https://obendidi.github.io/pstock
repo_name: obendidi/pstock
repo_url: https://github.com/obendidi/pstock
edit_uri: ""
theme:
name: "material"
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
extra_css:
- css/style.css
nav:
- Introduction: "index.md"
- User Guide: "user-guide.md"
- API: "api.md"
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
docstring_style: google
filters:
- "!^_" # exlude all members starting with _
# - "!^__" # exlude all members starting with __
- "^__root__$" # except for __root__
- "^__init__$" # but always include __init__ modules and methods
rendering:
heading_level: 3
members_order: source
show_if_no_docstring: true
show_root_heading: true
show_root_full_path: true
show_signature_annotations: true
show_source: true
show_root_members_full_path: true
watch:
- pstock
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences