-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
71 lines (63 loc) · 1.57 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
site_name: pandas-bootstrap
theme:
name: "material"
custom_dir: docs/overrides
features:
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.expand
- navigation.top
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
toggle:
icon: material/brightness-4
name: Switch to light mode
repo_name: pandas-bootstrap
repo_url: https://github.com/wd60622/pandas-bootstrap
edit_uri: blob/main/docs/
site_url: https://wd60622.github.io/pandas-bootstrap
extra:
homepage: https://wd60622.github.io/
social:
- icon: fontawesome/brands/github
link: https://github.com/wd60622/pandas-bootstrap
nav:
- Overview: index.md
- Modules:
- extensions.md
- bootstrap.md
- datasets.md
- Examples:
- Linear Regression: examples/linear-regression.md
- examples/correlation.md
- examples/return-type.md
- examples/parallelization.md
- examples/groupby-input.md
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- admonition
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.snippets
- pymdownx.superfences