-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
117 lines (107 loc) · 3.23 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
site_name: PyTVPaint
site_description: Python scripting for TVPaint
strict: true
site_url: https://brunchstudio.github.io/pytvpaint/
repo_url: https://github.com/brunchstudio/pytvpaint
repo_name: brunchstudio/pytvpaint
edit_uri: tree/main/docs
copyright: Made with ❤️ by BRUNCH Studio developers
theme:
name: material
custom_dir: docs/overrides
logo: assets/pytvpaint_logo.png
favicon: assets/pytvpaint_logo.png
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- content.tabs.link
- content.code.copy
- content.code.annotate
palette:
scheme: slate
primary: custom
accent: custom
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
extra:
generator: false
nav:
- Get Started:
- Welcome to PyTVPaint: index.md
- Installation: installation.md
- Usage:
- Basics: usage/usage.md
- Rendering: usage/rendering.md
- Limitations: limitations.md
- Contributing:
- Developer setup: contributing/developer_setup.md
- Internals: contributing/internals.md
- Wrapping George commands: contributing/wrap_george.md
- Modifying high-level classes: contributing/modify_objects.md
- Credits: credits.md
- C++ plugin:
- Introduction: cpp/index.md
- Building: cpp/building.md
- Python API Documentation:
- API:
- Project: api/objects/project.md
- ProjectSound: api/objects/project_sound.md
- Scene: api/objects/scene.md
- Clip: api/objects/clip.md
- ClipSound: api/objects/clip_sound.md
- Layer: api/objects/layer.md
- LayerInstance: api/objects/layer_instance.md
- LayerColor: api/objects/layer_color.md
- Camera: api/objects/camera.md
- George:
- Project: api/george/project.md
- Scene: api/george/scene.md
- Clip: api/george/clip.md
- Layer: api/george/layer.md
- Camera: api/george/camera.md
- Misc: api/george/misc.md
- Exceptions: api/george/exceptions.md
- Client:
- Communication: api/client/communication.md
- JSON-RPC: api/client/rpc.md
- Parsing: api/client/parsing.md
- Utils: api/utils.md
extra_css:
- stylesheets/extra.css
watch:
- pytvpaint
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
import:
- https://docs.python.org/3/objects.inv
options:
members_order: source
show_source: true
annotations_path: full
signature_crossrefs: true
docstring_options:
ignore_init_summary: false
filters: ["!^_"]
show_signature_annotations: True
merge_init_into_class: True
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true