-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
72 lines (64 loc) · 1.62 KB
/
mkdocs.yaml
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
# Project information
site_name: pyjviz documentation
site_url: https://pyjanitor-devs.github.io/pyjviz
site_description: >-
Python implementation of the R package janitor
# Repository
repo_name: "pyjanitor-devs/pyjviz"
repo_url: "https://github.com/pyjanitor-devs/pyjviz"
# Configuration
docs_dir: docs/
watch:
- pyjviz/
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
- User Guide: user_guide.md
- Examples: examples.md
- API Reference:
- Test: api/test.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: "google"
docstring_options:
trim_doctest_flags: true
show_root_toc_entry: false
show_submodules: true
show_source: true
# was able to enable mermaid diagrams using advice from https://squidfunk.github.io/mkdocs-material/reference/diagrams/
#
markdown_extensions:
- admonition
- pymdownx.highlight:
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra_css:
- css/apidocs.css