-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
49 lines (49 loc) · 1.33 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
site_name: Py-utilz
site_description: "Utility library for faster, easier, and more reliable data analysis"
site_url: "https://eshinjolly.com/py-utilz"
repo_url: "https://github.com/ejolly/py-utilz"
repo_name: "ejolly/py-utilz"
theme:
name: material
extra_css:
- custom.css
markdown_extensions:
- admonition
- codehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight
nav:
- Home: index.md
- Quick Overview: intro.ipynb
- Working with Pipes: pipes.md
- Functional/Verb-based data manipulation: verbs.ipynb
- API:
- I/O: api/io.md
- Function ops: api/ops.md
- Maps: api/maps.md
- Generators: api/generators.md
- Shorthands: api/shorts.md
- Pipes: api/pipes.md
- Dataframe verbs and tools: api/df.md
- Plotting tools: api/plot.md
- Boilerplate helpers: api/boilerplate.md
- Decorators: api/decorators.md
- Dataclasses: api/data.md
plugins:
- mkdocs-jupyter:
ignore: ["dev/*"]
- search
- mkdocstrings:
handlers:
python:
rendering:
show_root_toc_entry: false
show_source: true
show_if_no_docstring: false
heading_level: 4
watch:
- utilz