-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmkdocs.yml
150 lines (142 loc) · 4.28 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
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
## Project information
site_name: UP42 Python SDK
site_url: https://up42.github.io/up42-py/
site_description: UP42 Python SDK
## Repository
repo_name: up42-py
repo_url: https://github.com/up42/up42-py
edit_uri: '' #disables edit button
# Copyright
copyright: UP42 2023
## Social Media
extra:
social:
- icon: fontawesome/solid/house
link: https://up42.com
- icon: fontawesome/brands/twitter
link: https://twitter.com/up42_
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/up42/
- icon: fontawesome/brands/github-alt
link: https://github.com/up42
- icon: fontawesome/brands/docker
link: https://hub.docker.com/u/up42
- icon: fontawesome/solid/envelope
link: mailto:[email protected]
analytics:
provider: google
property: 'UA-132885718-1'
## Page tree
nav:
- Home: index.md
## Configuration
theme:
name: material
custom_dir: docs/theme_override_home/
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
palette:
primary: indigo
accent: purple
font:
text: Roboto
code: Roboto Mono
icon: # from .icons path. Add to theme override for custom logo.
logo: up42-logo # top left header logo
favicon: assets/logo-up42.ico #browser tab logo
## Plugins
plugins:
- redirects:
redirect_maps:
'index.md': 'https://docs.up42.com/sdk'
'webhooks.md': 'https://docs.up42.com/sdk'
'support-faq.md': 'https://docs.up42.com/sdk'
'installation.md': 'https://docs.up42.com/sdk/installation'
'authentication.md': 'https://docs.up42.com/sdk/authentication'
'structure.md': 'https://docs.up42.com/sdk/reference'
'geometry_handling.md': 'https://docs.up42.com/sdk/geometry'
'reference/up42-reference.md': 'https://docs.up42.com/sdk/reference/up42-class'
'reference/tasking-reference.md': 'https://docs.up42.com/sdk/reference/tasking-class'
'reference/catalog-reference.md': 'https://docs.up42.com/sdk/reference/catalog-class'
'reference/catalogbase-reference.md': 'https://docs.up42.com/sdk/reference/catalogbase-class'
'reference/order-reference.md': 'https://docs.up42.com/sdk/reference/order-class'
'reference/storage-reference.md': 'https://docs.up42.com/sdk/reference/storage-class'
'reference/asset-reference.md': 'https://docs.up42.com/sdk/reference/asset-class'
'reference/webhook-reference.md': 'https://docs.up42.com/sdk/reference/webhook-class'
- search
- autolinks
- mkdocs-jupyter:
include_source: False
ignore_h1_titles: True
- macros:
module_name: docs/macros
- exclude:
glob:
- "*config*.json"
- "*cfg*.json"
- ".ipynb_checkpoints"
- "*examples/project*"
- "*swagger*"
- PULL_REQUEST_TEMPLATE.md
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_root_toc_entry: False
show_root_heading: False
show_source: True
show_category_heading: True
show_bases: False
selection:
filters:
- "!^_" # exclude all members starting with _
watch:
- up42
## Custom theme additions
extra_javascript:
- 'stylesheets/extra.js'
extra_css:
- stylesheets/extra.css
## Extensions
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.attr_list
- markdown.extensions.md_in_html
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
baselevel: 1
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde