forked from pyjanitor-devs/pyjanitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
90 lines (82 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
site_name: pyjanitor documentation
site_url: https://pyjanitor-devs.github.io/pyjanitor
docs_dir: mkdocs/
theme:
name: "material"
palette:
primary: "blue grey"
accent: "blue grey"
icon:
logo: "fontawesome/solid/book"
features:
- instant
# - tabs
language: en
# We customize the navigation by hand to control the order
# in which pages show up.
nav:
- Home: index.md
- Development Guide: devguide.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
- Timeseries: api/timeseries.md
- Utils: api/utils.md
- XArray: api/xarray.md
- Changelog: CHANGELOG.md
- Authors: AUTHORS.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_submodules: true
show_source: true
# https://github.com/mkdocstrings/mkdocstrings/issues/278#issuecomment-831411193
selection:
docstring_style: restructured-text
# custom_templates: templates
watch:
- janitor/
# - mknotebooks:
# execute: true
# write_markdown: true
# allow_errors: true
# timeout: 1200
# binder: true
# binder_service_name: "gh"
# binder_branch: "master"
# Taken from here: https://squidfunk.github.io/mkdocs-material/extensions/codehilite/
markdown_extensions:
# - codehilite
- admonition
- pymdownx.highlight:
use_pygments: false
- pymdownx.inlinehilite
# - pymdownx.tabbed
# - pymdownx.arithmatex
# - pymdownx.details
# - pymdownx.superfences
# - markdown.extensions.attr_list
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js
- js/config.js
extra_css:
- css/nb_mods.css
- css/apidocs.css
# This sets the theme for syntax highlighting.
# Theme names are available here: https://highlightjs.org/static/demo/
# Not sure how the theme names map onto CSS filenames though.
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/nord.min.css
repo_name: "pyjanitor-devs/pyjanitor"
repo_url: "https://github.com/pyjanitor-devs/pyjanitor"