generated from wwu-mmll/photonai_module_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
68 lines (60 loc) · 1.5 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
# Project information
site_name: photonai_conformal
repo_name: 'photonai_conformal'
repo_url: 'https://github.com/wwu-mmll/photonai_conformal'
edit_uri: 'edit/master/docs'
# Social media
extra:
social:
- icon: fontawesome/brands/twitter
link: 'https://twitter.com/wwu_mmll'
# Theme configuration
theme:
name: 'material'
palette:
primary: 'teal'
accent: 'teal'
font: false
features:
- toc.integrate
# Latex
extra_javascript:
- assets/javascript/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# extensions
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
auto_title: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- codehilite
- admonition
- pymdownx.details
# Site structure
nav:
- Home: "index.md"
- API:
- ConformalClassifier: "api/ConformalClassifier.md"
- ConformalRegressor: "api/ConformalRegressor.md"
- Examples:
- DummyTransformer: "examples/ConformalRegressor/ConformalRegressorExample.ipynb"
extra_css:
- assets/stylesheets/material.css
plugins:
- mkdocstrings:
handlers:
python:
selection:
docstring_style: numpy
rendering:
show_source: false
- mkdocs-jupyter:
execute: True