-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
97 lines (92 loc) · 2.46 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
92
93
94
95
96
97
site_name: stdl
repo_name: zigai/stdl
repo_url: https://github.com/zigai/stdl
edit_uri: edit/main/docs/
theme:
name: material
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.path
- navigation.top
- navigation.expand
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- search.highlight
- search.share
- search.highlight
- search.suggest
- toc.follow
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: lime
toggle:
icon: material/weather-night
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- tables
- toc:
permalink: true
title: Page contents
plugins:
- autorefs
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- mkdocstrings:
handlers:
python:
options:
members_order: source
separate_signature: true
merge_init_into_class: true
show_root_full_path: true
show_symbol_type_toc: true
docstring_section_style: table # table, list or spacy
docstring_style: google
filters:
- "!^_" # Hide semi-private functions and methods
- "!^__" # Hide private functions and methods
show_signature_annotations: true
signature_crossrefs: true
import:
- https://docs.python.org/3/objects.inv
nav:
- Get Started: index.md
- API Documentation:
- fs: reference/fs.md
- st: reference/st.md
- dt: reference/dt.md
- log: reference/log.md
- net: reference/net.md
- decorators: reference/decorators.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/zigai/stdl
- icon: fontawesome/brands/python
link: https://pypi.org/project/stdl/