forked from stac-utils/stac-fastapi-pgstac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
83 lines (76 loc) · 2.21 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
site_name: stac-fastapi-pgstac
site_description: STAC FastAPI - pgstac backend.
# Repository
repo_name: "stac-utils/stac-fastapi-pgstac"
repo_url: "https://github.com/stac-utils/stac-fastapi-pgstac"
edit_uri: "blob/master/docs/src/"
# Social links
extra:
social:
- icon: "fontawesome/brands/github"
link: "https://github.com/stac-utils"
# Layout
nav:
- Home: "index.md"
- API:
- stac_fastapi.pgstac:
- index: api/stac_fastapi/pgstac/index.md
- app: api/stac_fastapi/pgstac/app.md
- config: api/stac_fastapi/pgstac/config.md
- core: api/stac_fastapi/pgstac/core.md
- db: api/stac_fastapi/pgstac/db.md
- extensions:
- index: api/stac_fastapi/pgstac/extensions/index.md
- filter: api/stac_fastapi/pgstac/extensions/filter.md
- query: api/stac_fastapi/pgstac/extensions/query.md
- models:
- index: api/stac_fastapi/pgstac/models/index.md
- links: api/stac_fastapi/pgstac/models/links.md
- transactions: api/stac_fastapi/pgstac/transactions.md
- utils: api/stac_fastapi/pgstac/utils.md
- version: api/stac_fastapi/pgstac/version.md
- Development - Contributing: "contributing.md"
- Release Notes: "release-notes.md"
plugins:
- search
# Theme
theme:
icon:
logo: "material/home"
repo: "fontawesome/brands/github"
name: "material"
language: "en"
font:
text: "Nunito Sans"
code: "Fira Code"
extra_css:
- stylesheets/extra.css
# These extensions are chosen to be a superset of Pandoc's Markdown.
# This way, I can write in Pandoc's Markdown and have it be supported here.
# https://pandoc.org/MANUAL.html
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- def_list
- footnotes
- pymdownx.arithmatex
- pymdownx.betterem
- pymdownx.caret:
insert: false
- pymdownx.details
- pymdownx.emoji
- 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