-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
81 lines (76 loc) · 2.05 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
# mkdocs.yml
theme:
name: "readthedocs"
icon:
repo: fontawesome/brands/gitlab
features:
- content.code.annotate
- navigation.tabs
- toc.follow
analytics:
- gtag: G-PD85X2X108
custom_dir: doc/custom_theme
plugins:
- search
- gen-files:
scripts:
- doc/gen_ref_pages.py
- mkdocstrings:
watch:
- pyotb/
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mermaid2
nav:
- Home: index.md
- Get Started:
- Installation of pyotb: installation.md
- How to use pyotb: quickstart.md
- Useful features: features.md
- Functions: functions.md
- Interaction with Python libraries (numpy, rasterio, tensorflow): interaction.md
- Examples:
- Pleiades data processing: examples/pleiades.md
- Nodata mean: examples/nodata_mean.md
- Advanced use:
- Comparison between pyotb and OTB native library: comparison_otb.md
- OTB versions: otb_versions.md
- Managing loggers: managing_loggers.md
- Troubleshooting & limitations: troubleshooting.md
- API:
- pyotb:
- core: reference/pyotb/core.md
- apps: reference/pyotb/apps.md
- functions: reference/pyotb/functions.md
- helpers: reference/pyotb/helpers.md
# Customization
extra:
feature:
tabs: true
social:
- icon: fontawesome/brands/gitlab
link: https://forgemia.inra.fr/orfeo-toolbox/pyotb
extra_css:
- https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb/-/raw/8.1.2-rc1/Documentation/Cookbook/_static/css/otb_theme.css
- extra.css
use_directory_urls: false # this creates some pyotb/core.html pages instead of pyotb/core/index.html
markdown_extensions:
- admonition
- toc:
permalink: true
title: On this page
toc_depth: 1-2
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: python
class: python
format: !!python/name:pymdownx.superfences.fence_code_format
# Rest of the navigation.
site_name: "pyotb: Orfeo ToolBox for Python"
repo_url: https://forgemia.inra.fr/orfeo-toolbox/pyotb
repo_name: pyotb
docs_dir: doc/