-
Notifications
You must be signed in to change notification settings - Fork 34
/
mkdocs.yml
57 lines (52 loc) · 1.31 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
site_name: Adviser
site_url: https://digitalphonetics.github.io/adviser/
repo_url: https://github.com/DigitalPhonetics/adviser
nav:
- Home: index.md
- Getting Started: getting-started.md
- Reference:
- Services: api/services.md
- Examples: api/examples.md
- Utils: api/utils.md
- Tools: api/tools.md
- Tutorials:
- Introduction: tutorials/introduction/index.md
- Services: tutorials/services/index.md
- Dialog System: tutorials/dialogsystem/index.md
- Advanced: tutorials/advanced/index.md
- FAQ: faq.md
theme: material
markdown_extensions:
- toc:
permalink: true
# - smarty
# - codehilite:
# guess_lang: false
- admonition
- pymdownx.tabbed
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
# selection:
# filters:
# - "!^python$"
rendering:
show_if_no_docstring: true
# show_source: true,
# show_root_toc_entry: false,
# show_root_heading: false,
# show_object_full_path: true,
# show_root_full_path: false,
# show_category_heading: true
watch:
- adviser
extra_css:
- custom.css