-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
58 lines (52 loc) · 1.3 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
site_name: perprof-py
site_url: https://abelsiqueira.com/perprof-py
nav:
- Home: index.md
- Install: install.md
- Command Line Usage: cli.md
- File Format: file-format.md
- Public API: api.md
- Old public API: old-api.md
plugins:
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://docs.scipy.org/doc/scipy/objects.inv
- https://pandas.pydata.org/docs/objects.inv
options:
docstring_options:
ignore_init_summary: yes
docstring_section_style: list
docstring_style: google
heading_level: 3
members_order: alphabetical
merge_init_into_class: no
separate_signature: no
show_category_heading: yes
show_if_no_docstring: no
show_root_members_full_path: yes
show_signature: yes
show_source: yes
show_submodules: no
- mike
theme:
name: material
palette:
primary: teal
accent: blue
font:
text: "Lato"
code: "Fira Mono"
extra:
version:
provider: mike
extra_css:
- css/extra.css
markdown_extensions:
- smarty
- toc:
permalink: true
toc_depth: 3