-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmkdocs.yml
52 lines (49 loc) · 1.15 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
site_name: TerraTorch
theme:
name: readthedocs #material
palette:
scheme: slate
features:
- content.code.copy
- content.code.select
- navigation.tabs
plugins:
- search
- 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
- Examples: examples.md
- Glossary: glossary.md
- License: license.md
- Components:
- Architecture Overview: architecture.md
- Tasks: tasks.md
- Models: models.md
- Data: data.md
- Registries: registry.md
- EncoderDecoderFactory: encoder_decoder_factory.md
#- FAQ: faq.md
markdown_extensions:
- toc:
permalink: "#"
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details