-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
90 lines (81 loc) · 2.18 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: PASCal
site_description: Documentation for PASCal
theme:
name: material
font:
text: 'Karla'
features:
- content.code.copy
palette:
scheme: default
primary: brown
accent: red
favicon: ./src/PASCal/static/PASCal_icon.png
language: en
logo: ./src/PASCal/static/PASCal_icon.png
icon:
repo: fontawesome/brands/github
repo_name: MJCliffe/PASCal
repo_url: https://github.com/MJCliffe/PASCal
docs_dir: "./docs"
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences:
# Allows mermaid code blocks to be rendered via mermaid.js
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.tabbed
- pymdownx.tasklist
- pymdownx.snippets
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search:
lang: en
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: true
show_object_full_path: false
show_category_heading: true
show_if_no_docstring: true
show_signature_annotations: true
show_source: true
show_bases: true
group_by_category: true
heading_level: 2
members_order: "source"
members: true
inherited_members: true
docstring_style: google
enable_inventory: false
filters:
- "!^_[^_]"
- "!__json_encoder__$"
- "!__all__$"
- "!__config__$"
- "!__eq__$"
- "!__repr__$"
- "!__init__$"
- awesome-pages
- autorefs
- mkdocs-jupyter:
execute: true
allow_errors: false
# to allow plotly to generate and show plots in deployed docs
include_requirejs: true