-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
66 lines (65 loc) · 1.59 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
site_name: Kit4DL
site_description: Kit4DL - A quick way to start with machine and deep learning
theme:
name: material
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: deep purple
accent: teal
features:
- search.suggest
- search.highlight
- content.tooltips
- content.code.annotate
- content.code.copy
- content.code.select
icon:
repo: fontawesome/brands/github-alt
# logo: static/logo.svg
favicon: static/logo.svg
language: en
repo_name: opengeokube/kit4dl
repo_url: https://github.com/opengeokube/kit4dl
edit_uri: ''
use_directory_urls: false
nav:
- About: index.md
- Installation: installation.md
- Quick start: quick.md
- CLI: cli.md
- Neural networks: nn.md
- Data module: datamodule.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
members_order: source
separate_signature: true
filters: ["!^_(?!defer_build_mode)"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_signature_annotations: true
signature_crossrefs: true
import:
- https://docs.python.org/3/objects.inv
markdown_extensions:
- admonition
- tables
- toc:
permalink: true
title: Page contents
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.extra
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true