-
Notifications
You must be signed in to change notification settings - Fork 23
/
mkdocs.yml
46 lines (44 loc) · 1010 Bytes
/
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
site_name: TerraTorch
theme:
name: material
palette:
scheme: slate
features:
- content.code.copy
- content.code.select
- navigation.tabs
plugins:
- autorefs
- mkdocstrings:
handlers:
python:
paths: [src] # search packages in the src folde
options:
show_root_heading: true
extra:
version:
provider: mike
site_url: https://ibm.github.io/terratorch/
repo_url: https://github.com/IBM/terratorch
nav:
- index.md
- Getting Started: quick_start.md
- Components:
- Tasks: tasks.md
- Models: models.md
- Data: data.md
- Registries: registry.md
- EncoderDecoderFactory: encoder_decoder_factory.md
- Examples: examples.md
- FAQ: faq.md
- For Developers: architecture.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details