-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
133 lines (116 loc) · 4.07 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
site_name: OpenGeoMetadata
theme:
name: material
highlightjs: true
logo: images/ogm-border-72.png
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
custom_dir: overrides
features:
- navigation.top
- navigation.indexes
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- navigation.sections
- navigation.expand
- navigation.path
- navigation.prune
- toc.integrate
- toc.follow
plugins:
- table-reader
- search
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
- javascripts/tablesort.js
markdown_extensions:
- abbr
- def_list
- footnotes
- tables
- attr_list
- md_in_html
- admonition
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.details
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- toc:
toc_depth: 3
permalink: true
- pymdownx.magiclink
nav:
- Home: 'index.md'
- Reference:
- 'reference/index.md'
- Schemas:
- 'OGM Aardvark' : 'ogm-aardvark.md'
- Legacy Schemas :
- 'GBL 1.0' : 'gbl-1.0.md'
- 'GBL 0.5': 'gbl-0.5.md'
- Crosswalks:
- 'Aardvark to GBL 1.0' : 'aardvark-gbl-1-crosswalk.md'
- 'Aardvark to FGDC and ISO': 'aardvark-fgdc-iso-crosswalk.md'
- 'GBL 1.0 to FGDC and ISO': 'gbl1-fgdc-iso-crosswalk.md'
- Syntax:
- 'Reference URIs': 'reference-uris.md'
- 'Solr Field Suffixes': 'solr-field-suffixes.md'
- 'Custom Fields': 'custom-fields.md'
- Validation:
- 'JSON schema files': 'json-schema.md'
- Tools:
- 'Scripts': 'scripts.md'
- 'Applications': 'applications.md'
- How-to:
- 'how-to-guides/index.md'
- Repositories:
- 'Share on OpenGeoMetadata': 'share-on-ogm.md'
- 'Harvest from OpenGeoMetadata': 'harvest-ogm.md'
- Metadata:
- 'Upgrade to OGM Aardvark': 'upgrade-metadata.md'
- 'Create Metadata': 'create-metadata.md'
- 'Validate Metadata': 'validate-metadata.md'
- 'Configure References Links': 'configure-references-links.md'
- Publishing:
- 'Index in Solr': 'index-in-solr.md'
- 'View in GeoBlacklight': 'view-solr-metadata.md'
- Explanation:
- 'explanation/index.md'
- Repositories:
- 'About OGM Repositories': 'about-ogm-repositories.md'
- Metadata:
- 'About OGM Aardvark': 'about-ogm-aardvark.md'
- 'JSON Format': 'JSON-format.md'
- 'Temporal Fields': 'temporal-fields.md'
- 'Spatial Fields': 'spatial-fields.md'
- 'Relations Fields': 'relations-fields.md'
- 'Further Reading': 'further-reading.md'