-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
129 lines (120 loc) · 5.6 KB
/
mkdocs.yml
File metadata and controls
129 lines (120 loc) · 5.6 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
# Do not modify below line! Inherits common components.
INHERIT: ./docs/_global/mkdocs.yml
#### Site metadata & nav - update these!
site_name: Premiere Pro C++ SDK Guide
site_url: https://ppro-plugins.docsforadobe.dev/
repo_url: https://github.com/docsforadobe/premiere-plugin-guide/
repo_name: "premiere-plugin-guide"
nav:
- Home: index.md
- History:
- Version History: history.md
- Introduction:
- What Premiere Plug-Ins Do: intro/what-premiere-plugins-do.md
- SDK Audience: intro/sdk-audience.md
- Whats New: intro/whats-new.md
- Where Do I Start: intro/where-do-i-start.md
- Document Overview: intro/document-overview.md
- Getting Support and Providing Feedback: intro/getting-support.md
- Premiere Pro Plug-In Types: intro/premiere-pro-plugin-types.md
- Sample Projects: intro/sample-projects.md
- Debugging Plug-Ins: intro/debugging-plugins.md
- Load Em Up: intro/load-em-up.md
- Plug In Installation: intro/plugin-installation.md
- Localization: intro/localization.md
- Best Practices: intro/best-practices.md
- Resources:
- Resources: resources/resources.md
- Plug-In Property Lists (PiPL) Resource: resources/pipl-resource.md
- IMPT Resource: resources/impt-resource.md
- Universals:
- Universals: universals/universals.md
- Time: universals/time.md
- Video Frames: universals/video-frames.md
- Pixel Formats And Color Spaces: universals/pixel-formats-and-color-spaces.md
- Pixel Aspect Ratio: universals/pixel-aspect-ratio.md
- Fields: universals/fields.md
- Audio: universals/audio.md
- Memory Management: universals/memory-management.md
- Basic Types Structures: universals/basic-types-structures.md
- Suites: universals/suites.md
- SweetPea Suites: universals/sweetpea-suites.md
- Legacy Callback Suites: universals/legacy-callback-suites.md
- Hardware Integration:
- Hardware: hardware/hardware.md
- Hardware Integration Components: hardware/hardware-integration-components.md
- ClassID, Filetype and Subtype: hardware/classid-filetype-subtype.md
- ClassData Functions: hardware/classdata-functions.md
- Importers:
- Importers: importers/importers.md
- What's New: importers/whats-new.md
- Getting Started: importers/getting-started.md
- Selector Table: importers/selector-table.md
- Selector Descriptions: importers/selector-descriptions.md
- Return Codes: importers/return-codes.md
- Structures: importers/structures.md
- Structure Descriptions: importers/structure-descriptions.md
- Suites: importers/suites.md
- Export Controllers:
- Export Controllers: export-controllers/export-controllers.md
- Exporters:
- Exporters: exporters/exporters.md
- Getting Started: exporters/getting-started.md
- Selector Table: exporters/selector-table.md
- Selector Descriptions: exporters/selector-descriptions.md
- Return Codes: exporters/return-codes.md
- Structures: exporters/structures.md
- Structure Descriptions: exporters/structure-descriptions.md
- Suites: exporters/suites.md
- Additional Details: exporters/additional-details.md
- Transmitters:
- Transmitters: transmitters/transmitters.md
- Transmitter Basics: transmitters/transmitter-basics.md
- tmModule Functions: transmitters/tmModule-functions.md
- tmModule Structures: transmitters/tmModule-structures.md
- Suites: transmitters/suites.md
- Video Filters:
- Video Filters: video-filters/video-filters.md
- Getting Started: video-filters/getting-started.md
- Selector Table: video-filters/selector-table.md
- Selector Descriptions: video-filters/selector-descriptions.md
- Return Codes: video-filters/return-codes.md
- VideoRecord: video-filters/VideoRecord.md
- Additional Details: video-filters/additional-details.md
- GPU Effects & Transitions:
- GPU Effects & Transitions: gpu-effects-transitions/gpu-effects-transitions.md
- Getting Started: gpu-effects-transitions/getting-started.md
- CUDA, OpenCL, Metal, or OpenGL?: gpu-effects-transitions/cuda-opencl-metal-opengl.md
- PrGPUFilter Function Table: gpu-effects-transitions/PrGPUFilter-function-table.md
- Function Descriptions: gpu-effects-transitions/function-descriptions.md
- Return Codes: gpu-effects-transitions/return-codes.md
- Structure Descriptions: gpu-effects-transitions/structure-descriptions.md
- PrGPU SDK Macros: gpu-effects-transitions/PrGPU-SDK-macros.md
- Suites: gpu-effects-transitions/suites.md
- AE Transition Extensions:
- Getting Started: ae-transition-extensions/getting-started.md
- AE Transition Extensions: ae-transition-extensions/ae-transition-extensions.md
- PF_TransitionSuite: ae-transition-extensions/PF_TransitionSuite.md
- Control Surfaces:
- Control Surfaces: control-surfaces/control-surfaces.md
#### Additional config below - modify sparingly!
extra:
# Custom guide-specific overrides
#
# Valid keys are:
# custom_dir: str
# hooks:
# - path/to/hook.py
# not_in_nav:
# - gitignore_style/path/to/exclude
# theme_features:
# - theme.feature
overrides: {}
# CSS for this guide
extra_css:
- _static/extra.css
# JS for this guide
extra_javascript:
- _static/extra.js
markdown_extensions: {}
plugins: {}