-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmkdocs.yml
More file actions
103 lines (93 loc) · 2.59 KB
/
mkdocs.yml
File metadata and controls
103 lines (93 loc) · 2.59 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
97
98
99
100
101
site_name: DamageScanner
repo_url: https://github.com/VU-IVM/DamageScanner
repo_name: DamageScanner
site_description: Damage Assessments for Natural Hazards
site_author: Elco Koks, Jens de Bruijn
copyright:
'<span>
<i> Institute for Environmental Studies, Vrije Universiteit Amsterdam </i>
<br>
Copyright ©
<script>document.write(new Date().getFullYear())</script>
Elco Koks & Jens de Bruijn
</span>'
plugins:
- search
- mkdocs-jupyter
- mike:
alias_type: copy
- mkdocstrings:
default_handler: python
handlers:
python:
paths : [src]
options:
show_root_heading: true
show_root_full_path: false
show_signature: true # <- shows the function signature
show_source: false # optional: hides source link
show_bases: false # optional: hides base classes for class views
heading_level: 3
nav:
- Overview: index.md
- How it works:
- Introduction: how-to/overview.md
- Raster-based approach: how-to/raster.md
- Vector-based approach: how-to/vector.md
- Coupling with OSM: how-to/osm.md
- Examples:
- Overview: examples/overview.md
- Vector-based example: examples/vector-based.md
- Raster-based example: examples/raster-based.md
- API Reference: api.md
markdown_extensions:
- markdown_include.include
- footnotes
- attr_list
- md_in_html
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- toc:
permalink: false
- pymdownx.superfences
- pymdownx.magiclink
theme:
name: material
palette:
- scheme: default
primary: blue grey
accent: blue grey
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: blue grey
toggle:
icon: material/weather-sunny
name: Switch to light mode
logo: images/logo-icon.svg # ✅ your actual SVG file here
icon:
logo: null # ✅ disables the default Material icon (like `material/earth`)
repo: null # (optional) disables GitHub icon in top-right
font:
text: Roboto
code: Roboto Mono
features:
- navigation.sections # Shows all top-level sections in sidebar
- navigation.tabs
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
extra:
version:
provider: mike
extra_javascript:
- javascripts/set-body-class.js
extra_css:
- stylesheets/extra.css