-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
61 lines (56 loc) · 1.33 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
site_name: cucaracha
repo_url: https://github.com/acsenrafilho/cucaracha
repo_name: acsenrafilho/cucaracha
edit_uri: tree/main/docs
theme:
name: material
language: en
logo: assets/cucaracha-favicon.png
favicon: assets/cucaracha-favicon.png
palette:
scheme: default
primary: custom
accent: red
font:
text: Noto Serif
code: Roboto Mono
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- content.footnote.tooltips
- navigation.instant
- navigation.instant.progress
- navigation.sections
- navigation.expand
markdown_extensions:
- admonition
- attr_list
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- footnotes
extra_css:
- stylesheets/extra.css
nav:
- 'index.md'
- 'installation_guide.md'
- 'faq.md'
- 'getting_started.md'
- 'api/document.md'
- 'api/tasks/identification.md'
- 'api/tasks/threshold.md'
- 'api/tasks/aligment.md'
- 'api/tasks/noise_removal.md'
- 'api/ml_models/image_classification/img_class.md'
- 'api/ml_models/image_segmentation/img_sem_seg.md'
- 'api/ml_trainers/img_trainers.md'
- 'contribute.md'
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [cucaracha]