-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
96 lines (86 loc) · 2.06 KB
/
mkdocs.yml
File metadata and controls
96 lines (86 loc) · 2.06 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
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
91
92
93
94
95
96
site_name: fluxopt-plot
site_description: Interactive plotly visualization for fluxopt energy system models
repo_url: https://github.com/FBumann/fluxopt-plot
repo_name: FBumann/fluxopt-plot
nav:
- Home: index.md
- API Reference: api.md
theme:
name: material
language: en
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: Roboto
code: Fira Code
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tracking
- navigation.top
- navigation.footer
- toc.follow
- search.suggest
- search.highlight
- content.code.copy
- content.code.select
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- tables
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- include-markdown
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
docstring_style: google
docstring_section_style: table
members_order: source
show_if_no_docstring: false
heading_level: 1
show_root_heading: true
show_signature: true
show_signature_annotations: true
separate_signature: true
line_length: 80
modernize_annotations: true
merge_init_into_class: true
extra_css:
- stylesheets/extra.css
watch:
- src/fluxopt_plot
- docs