-
Notifications
You must be signed in to change notification settings - Fork 172
/
mkdocs.yml
94 lines (86 loc) · 2.28 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
# Project information
site_name: pyjanitor documentation
site_url: https://pyjanitor-devs.github.io/pyjanitor
site_description: >-
Python implementation of the R package janitor
# Repository
repo_name: "pyjanitor-devs/pyjanitor"
repo_url: "https://github.com/pyjanitor-devs/pyjanitor"
# Configuration
docs_dir: mkdocs/
watch:
- janitor/
theme:
name: "material"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: "blue grey"
accent: "light blue"
icon:
logo: "fontawesome/solid/book"
features:
- navigation.instant
# - navigation.tabs
- navigation.top
- toc.follow
- content.code.copy
language: en
# Page tree
# We customize the navigation by hand to control the order
# in which pages show up.
nav:
- Home: index.md
- API Reference:
- Functions: api/functions.md
- Biology: api/biology.md
- Chemistry: api/chemistry.md
- Engineering: api/engineering.md
- Finance: api/finance.md
- Input/Output (io): api/io.md
- Machine Learning: api/ml.md
- Math: api/math.md
# - PySpark: api/pyspark.md # will be added back later
- Polars: api/polars.md
- Timeseries: api/timeseries.md
- XArray: api/xarray.md
- Development Guide: devguide.md
- Changelog: CHANGELOG.md
- Authors: AUTHORS.md
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: "google"
docstring_options:
trim_doctest_flags: true
show_if_no_docstring: false
show_root_toc_entry: false
show_root_heading: false
show_submodules: true
show_source: true
members_order: alphabetical
# - mknotebooks:
# execute: true
# write_markdown: true
# allow_errors: true
# timeout: 1200
# binder: true
# binder_service_name: "gh"
# binder_branch: "master"
markdown_extensions:
- admonition
- pymdownx.highlight:
use_pygments: true
- pymdownx.inlinehilite
# - pymdownx.tabbed:
# alternate_style: true
- pymdownx.superfences
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra_css:
- css/apidocs.css