-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
73 lines (69 loc) · 1.93 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
site_name: Yaptide for developers
site_url: https://yaptide.github.io/for_developers
repo_url: https://github.com/yaptide/for_developers
repo_name: yaptide/for_developers
copyright: Copyright © 2024 the Yaptide team
theme:
name: material
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
nav:
- Backend:
- Overview: backend/index.md
- For developers: backend/for_developers.md
- Using docker: backend/using_docker.md
- API: backend/swagger.md
- Jobs and tasks: backend/states.md
- Persistent storage: backend/persistency.md
- Docker images on GHCR: backend/ghcr_packages.md
- Test coverage: coverage.md
- Code Reference: reference/
- Frontend:
- Overview: frontend/index.md
- For developers: frontend/for_developers.md
- Examples: frontend/examples.md
- Authentication: frontend/authentication.md
- Examples: frontend/examples.md
- ThreeJs development: frontend/three_editor_development.md
- Converter:
- Overview: converter/index.md
- Readme: converter/readme.md
- Tests: converter/tests.md
- Editing documentation: documentation/index.md
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- coverage:
page_name: coverage
html_report_dir: htmlcov
- render_swagger
- mkdocstrings:
enable_inventory: true
handlers:
python:
paths: [yaptide]
options:
show_if_no_docstring: true
line_numbers: true
inheritance_diagram: true
separate_signature: true
show_root_heading: true
show_root_members_full_path: false
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true