-
Notifications
You must be signed in to change notification settings - Fork 193
/
mkdocs.yml
75 lines (62 loc) · 1.65 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
site_name: ckanext-spatial
#site_url: https://docs.ckan.org/projects/ckanext-spatial
site_url: http://localhost:8000
site_description: >-
The documentation of ckanext-spatial, a CKAN extension that
improves CKAN geospatial capabilities.
repo_name: ckan/ckanext-spatial
repo_url: https://github.com/ckan/ckanext-spatial
docs_dir: doc
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: ckan
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch-off
name: Switch to light mode
logo: _assets/logo.png
favicon: _assets/ckan.ico
features:
- navigation.expand
- navigation.footer
- navigation.instant
- navigation.instant.progress
- search.suggest
- search.highlight
- toc.integrate
- content.code.copy
plugins:
- search
markdown_extensions:
- toc:
permalink: true
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
extra_css:
- _css/extra.css
nav:
- Home: 'index.md'
- Installation and setup: 'install.md'
- Spatial search: 'spatial-search.md'
- Spatial harvesters: 'harvesters.md'
- Other features:
- CSW: 'csw.md'
- Previews of spatial formats: 'previews.md'
- Common base layer for map widgets: 'map-widgets.md'
- CHANGELOG: 'changelog.md'