forked from cogeotiff/rio-tiler-pds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
95 lines (87 loc) · 2.35 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
# Project Information
site_name: 'rio-tiler-pds'
site_description: 'A rio-tiler plugin to access and read Public hosted datasets.'
docs_dir: 'docs'
site_dir: 'build'
# Repository
repo_name: 'cogeotiff/rio-tiler-pds'
repo_url: 'https://github.com/cogeotiff/rio-tiler-pds'
edit_uri: 'blob/master/src/'
site_url: 'https://cogeotiff.github.io/rio-tiler-pds/'
# Social links
extra:
social:
- icon: 'fontawesome/brands/github'
link: 'https://github.com/cogeotiff'
- icon: 'fontawesome/brands/twitter'
link: 'https://twitter.com/cogeotiff'
- icon: 'fontawesome/solid/globe'
link: 'https://www.cogeo.org/'
# Layout
nav:
- Home: 'index.md'
- Usage:
- Overview: usage/overview.md
- Sentinel: usage/sentinel.md
- Landsat Collection 2: usage/landsat-c2.md
- Landsat: usage/landsat.md
- CBERS: usage/cbers.md
- MODIS: usage/modis.md
- Development - Contributing: 'contributing.md'
- Release: 'release-notes.md'
- API:
- Sentinel: API/sentinel.md
- Landsat Collection 2: API/landsat-c2.md
- Landsat: API/landsat.md
- CBERS: API/cbers.md
- MODIS: API/modis.md
# Theme
theme:
icon:
logo: 'material/home'
repo: 'fontawesome/brands/github'
name: 'material'
language: 'en'
palette:
primary: 'blue'
accent: 'light blue'
font:
text: 'Nunito Sans'
code: 'Fira Code'
plugins:
- search
- mkapi:
src_dirs: [rio_tiler_pds]
# Uncomment if I use math in the docs in the future
# extra_javascript:
# - helpers/helpers.js
# - https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-AMS-MML_HTMLorMML
# 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