-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
66 lines (63 loc) · 2.12 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
site_name: geoserverx
site_description: "geoserverx is a modern python and CLI package for communicating with Geoserver."
site_url: https://geobeyond.github.io/geoserverx/
site_author: Geobeyond
copyright: "© 2024 Geobeyond"
theme:
name: material
icon:
logo: material/package-variant
favicon: material/package-variant
palette:
primary: white
features:
- content.code.copy
- navigation.tabs
- navigation.tabs.sticky
repo_url: https://github.com/geobeyond/geoserverx
plugins:
- social
- search
nav:
- Home: index.md
- Sync :
- pages/sync/index.md
- Workspaces : pages/sync/workspace.md
- Vector Data : pages/sync/vector-store.md
- Raster Data : pages/sync/raster-store.md
- Style : pages/sync/style.md
- Example : pages/sync/example.md
- Async :
- pages/async/index.md
- Workspaces : pages/async/workspace.md
- Vector Data : pages/async/vector-store.md
- Raster Data : pages/async/raster-store.md
- Style : pages/async/style.md
- Example : pages/async/example.md
- Command Line :
- pages/cli/index.md
- Workspaces : pages/cli/workspace.md
- Vector Data : pages/cli/vector-store.md
- Raster Data : pages/cli/raster-store.md
- Style : pages/cli/style.md
- Example : pages/cli/example.md
markdown_extensions:
- meta # option to add some meta tags on top, title, author, date, etc
- admonition # adds the note, question, tip boxes, eg: !!! tip "my tip"
- pymdownx.details # advanced collapsible panels
- pymdownx.superfences # advanced features; such as line number, flow chart, python shell
- footnotes # notes bottom of page
- attr_list # used to size images
- md_in_html # used to size images
- pymdownx.tabbed:
alternate_style: true
extra_css:
# pygeoapi primary color with light and dark variations from material.io
# https://material.io/resources/color/#!/?view.left=0&view.right=1
- assets/stylesheets/termynal.css
- assets/stylesheets/custom.css
extra_javascript:
- assets/javascripts/termynal.js
- assets/javascripts/custom.js
extra:
generator: false