-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
executable file
·122 lines (113 loc) · 3.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
site_name: geoserver-py
site_description: Python Client for GeoServer.
strict: true
site_url: https://github.com/arthurdjn/geoserver-py
theme:
name: "material"
custom_dir: "docs/theme"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: teal
toggle:
icon: material/lightbulb
name: "Switch to light mode"
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- navigation.prune
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- navigation.path
- navigation.prune
- navigation.footer
- navigation.tracking
- navigation.sections # navigation.expand or navigation.sections
- search.suggest
- toc.follow
favicon: "favicon.ico"
logo: "logo.svg"
repo_name: arthurdjn/geoserver-py
repo_url: https://github.com/arthurdjn/geoserver-py
edit_uri: edit/main/docs/
# https://www.mkdocs.org/user-guide/configuration/#validation
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
extra_css:
- "css/style.css"
nav:
- Get Started:
- Welcome to geoserver-py: index.md
- Changelog: changelog.md
- API Reference:
- GeoServer: api/geoserver.md
- GeoWebCache: api/geowebcache.md
- Tutorials:
- About: notebooks/About.ipynb
- Fonts: notebooks/Fonts.ipynb
- Layers: notebooks/Layers.ipynb
- Layer Groups: notebooks/Layer Groups.ipynb
- Security: notebooks/Security.ipynb
- Styles: notebooks/Styles.ipynb
- Workspaces: notebooks/Workspaces.ipynb
- Stores: notebooks/Stores.ipynb
- Image Mosaic: notebooks/Image Mosaic.ipynb
- All In One: notebooks/All In One.ipynb
- Blog: https://www.arthurdujardin.com/blog/automating-geospatial-tasks-with-geoserver-and-python
markdown_extensions:
- tables
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.extra
- pymdownx.emoji:
- pymdownx.tabbed:
alternate_style: true
watch:
- geoserver
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
members_order: source
separate_signature: true
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_signature_annotations: true
signature_crossrefs: true
show_labels: true
show_symbol_type_heading: true
show_symbol_type_toc: true
- mkdocs-jupyter:
theme: dark
include_source: True
- mkdocs-simple-hooks:
hooks:
on_pre_build: 'docs.plugins.main:on_pre_build'
- exclude:
glob:
- theme/announce.html
- plugins/*
- __pycache__/*