-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
79 lines (73 loc) · 1.83 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
site_name: fio-planet
site_url: https://github.com/planetlabs/fio-planet
site_author: https://developers.planet.com
site_description: >-
A package of Fiona CLI plugin commands from Planet Labs PBC.
repo_name: planetlabs/fio-planet
repo_url: https://github.com/planetlabs/fio-planet
edit_uri: ""
theme:
name: 'material'
logo: 'images/Planet_primarymark_RGB_White.png'
favicon: 'images/logo.svg'
custom_dir: 'docs/custom_theme/'
features:
- navigation.tabs
# - navigation.instant # Not compatible with i18n plugin
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.sections
- navigation.tracking
- search.suggest
- search.highlight
- toc.follow
- toc.integrate
palette:
- scheme: default
primary: #007f99
toggle:
icon: octicons/moon-24
name: Switch to dark mode
- scheme: slate
primary: #004352
toggle:
icon: octicons/sun-24
name: Switch to light mode
extra:
company:
name: "Planet Labs PBC"
product:
name: "Fio CLI plugins from Planet"
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
handlers:
python:
rendering:
show_root_heading: true
selection:
inherited_members: true
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
watch:
- src/fio_planet
- docs/custom_theme/
nav:
- "Home": 'index.md'
- "Commands": 'commands.md'
- "Expressions": 'expressions.md'
- "Topics": 'topics'
markdown_extensions:
- pymdownx.inlinehilite
- pymdownx.snippets:
dedent_subsections: True
- pymdownx.highlight
- pymdownx.superfences
- mkdocs-click
- admonition
- toc:
permalink: True