-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
56 lines (51 loc) · 1.07 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
site_name: asltk
repo_url: https://github.com/LOAMRI/asltk
repo_name: LOAMRI/asltk
edit_uri: tree/main/docs
theme:
name: material
language: en
logo: assets/asltk-favicon.png
favicon: assets/asltk-favicon.png
palette:
scheme: default
primary: custom
accent: cyan
font:
text: Arial
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'
- 'getting_started.md'
- 'faq.md'
- 'api/asldata.md'
- 'api/reconstruction.md'
- 'api/utils.md'
- 'contribute.md'
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [asltk]