-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
158 lines (146 loc) · 4.19 KB
/
mkdocs.yml
File metadata and controls
158 lines (146 loc) · 4.19 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
site_name: async-geotiff
repo_name: developmentseed/async-geotiff
repo_url: https://github.com/developmentseed/async-geotiff
site_description: A fast, async GeoTIFF and Cloud-Optimized GeoTIFF (COG) reader for Python.
site_author: Development Seed
# Note: trailing slash recommended with mike:
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/#publishing-a-new-version
site_url: https://developmentseed.org/async-geotiff/
docs_dir: docs
extra:
social:
- icon: "fontawesome/brands/github"
link: "https://github.com/developmentseed"
- icon: "fontawesome/brands/linkedin"
link: "https://www.linkedin.com/company/development-seed"
version:
alias: true
provider: mike
nav:
- "index.md"
- API Reference:
- api/geotiff.md
- api/overview.md
- api/raster-array.md
- api/tile.md
- api/window.md
- api/colormap.md
- api/utils.md
- api/enums.md
- api/exceptions.md
- api/tms.md
- Blog:
- blog/index.md
- Changelog: CHANGELOG.md
watch:
- src/
- docs/
- README.md
theme:
language: en
name: material
custom_dir: docs/overrides
logo: assets/logo_no_text.png
favicon: assets/ds_favicon.png
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: default
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: default
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: Roboto
code: Roboto Mono
features:
- content.code.annotate
- content.code.copy
- navigation.indexes
- navigation.instant
- navigation.tracking
- search.suggest
- search.share
extra_css:
- overrides/stylesheets/extra.css
plugins:
- autorefs:
resolve_closest: true
- blog
- search
- social:
enabled: !ENV [CI, false]
- mike:
alias_type: "copy"
canonical_version: "latest"
- mkdocstrings:
enable_inventory: true
handlers:
python:
paths: [src]
options:
docstring_section_style: list
docstring_style: google
inherited_members: true
line_length: 80
separate_signature: true
show_root_heading: true
show_signature_annotations: true
show_source: false
show_symbol_type_toc: true
signature_crossrefs: true
extensions:
- griffe_inherited_docstrings
inventories:
- https://affine.readthedocs.io/en/latest/objects.inv
- https://developmentseed.org/async-tiff/latest/objects.inv
- https://developmentseed.org/morecantile/objects.inv
- https://developmentseed.org/obspec/latest/objects.inv
- https://developmentseed.org/obstore/latest/objects.inv
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://pyproj4.github.io/pyproj/stable/objects.inv
- https://rasterio.readthedocs.io/en/stable/objects.inv
# https://github.com/developmentseed/titiler/blob/50934c929cca2fa8d3c408d239015f8da429c6a8/docs/mkdocs.yml#L115-L140
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- def_list
- footnotes
- md_in_html
- pymdownx.arithmatex
- pymdownx.betterem
- pymdownx.caret:
insert: false
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.escapeall:
hardbreak: true
nbsp: true
- pymdownx.magiclink:
hide_protocol: true
repo_url_shortener: true
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- toc:
permalink: true