-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmkdocs.yml
More file actions
49 lines (40 loc) · 1.04 KB
/
mkdocs.yml
File metadata and controls
49 lines (40 loc) · 1.04 KB
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: My Docs
repo_name: 'marcofavorito/python-project-template'
repo_url: https://github.com/marcofavorito/python-project-template
nav:
- Home: index.md
plugins:
- search
- mknotebooks:
execute: false
write_markdown: false
#preamble: ""
#enable_default_jupyter_cell_styling: false
#enable_default_pandas_dataframe_styling: false
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
docstring_style: sphinx
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
watch:
- python_project_template
theme:
name: material
feature:
tabs: true
strict: true
markdown_extensions:
- codehilite
- pymdownx.arithmatex
- pymdownx.superfences
- pymdownx.highlight
- admonition
- markdown_include.include:
base_path: docs
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
- 'https://unpkg.com/mermaid@7.1.2/dist/mermaid.min.js'