-
Notifications
You must be signed in to change notification settings - Fork 147
/
mkdocs.yml
79 lines (67 loc) · 1.8 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
76
77
78
79
site_name: ckanext-dcat
site_url: https://docs.ckan.org/projects/ckanext-dcat
#site_url: http://localhost:8000
site_description: >-
The documentation of ckanext-dcat, a CKAN extension that allows to expose
and consume metadata semantically using the DCAT standard.
repo_name: ckan/ckanext-dcat
repo_url: https://github.com/ckan/ckanext-dcat
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_javascript:
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
- _js/tablesort.js
extra_css:
- _css/extra.css
nav:
- Home: 'index.md'
- Getting started: 'getting-started.md'
- DCAT support:
- 'endpoints.md'
- DCAT ↔ CKAN mapping: 'mapping.md'
- 'profiles.md'
- Other features:
- 'harvester.md'
- Google Dataset Search: 'google-dataset-search.md'
- CLI: 'cli.md'
- Configuration reference: 'configuration.md'
- CHANGELOG: 'changelog.md'