-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmkdocs.yml
111 lines (102 loc) · 3.96 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
# Do not modify below line! Inherits common components.
INHERIT: ./docs/_global/mkdocs.yml
#### Site metadata & nav - update these!
site_name: After Effects Scripting Guide
site_url: https://ae-scripting.docsforadobe.dev/
repo_url: https://github.com/docsforadobe/after-effects-scripting-guide/
repo_name: "after-effects-scripting-guide"
nav:
- Home: index.md
- Introduction:
- Overview: introduction/overview.md
- Javascript for After Effects: introduction/javascript.md
- After Effects Scripting Changlog: introduction/changelog.md
- After Effects Object Model: introduction/objectmodel.md
- After Effects Class Hierarchy: introduction/classhierarchy.md
- General:
- Globals: general/globals.md
- Application: general/application.md
- Project: general/project.md
- System: general/system.md
- Item:
- Item object: item/item.md
- ItemCollection: item/itemcollection.md
- AVItem: item/avitem.md
- CompItem: item/compitem.md
- FolderItem: item/folderitem.md
- FootageItem: item/footageitem.md
- Layer:
- Layer object: layer/layer.md
- LayerCollection: layer/layercollection.md
- AVLayer: layer/avlayer.md
- CameraLayer: layer/cameralayer.md
- LightLayer: layer/lightlayer.md
- ShapeLayer: layer/shapelayer.md
- TextLayer: layer/textlayer.md
- ThreeDModelLayer: layer/threedmodellayer.md
- Property:
- Property object: property/property.md
- PropertyBase: property/propertybase.md
- PropertyGroup: property/propertygroup.md
- MaskPropertyGroup: property/maskpropertygroup.md
- Render Queue:
- RenderQueue object: renderqueue/renderqueue.md
- RQItemCollection: renderqueue/rqitemcollection.md
- RenderQueueItem: renderqueue/renderqueueitem.md
- OMCollection: renderqueue/omcollection.md
- OutputModule: renderqueue/outputmodule.md
- Sources:
- FileSource: sources/filesource.md
- FootageSource: sources/footagesource.md
- PlaceholderSource: sources/placeholdersource.md
- SolidSource: sources/solidsource.md
- Text:
- CharacterRange: text/characterrange.md
- ComposedLineRange: text/composedlinerange.md
- FontObject: text/fontobject.md
- FontsObject: text/fontsobject.md
- ParagraphRange: text/paragraphrange.md
- TextDocument: text/textdocument.md
- Other:
- Collection: other/collection.md
- ImportOptions: other/importoptions.md
- KeyframeEase: other/keyframeease.md
- MarkerValue: other/markervalue.md
- Preferences: other/preferences.md
- Settings: other/settings.md
- Shape: other/shape.md
- View: other/view.md
- Viewer: other/viewer.md
- ViewOptions: other/viewoptions.md
- Match Names:
- Layers:
- AV Layer Match Names: matchnames/layer/avlayer.md
- 3D Layer Match Names: matchnames/layer/3dlayer.md
- Camera Layer Match Names: matchnames/layer/cameralayer.md
- Light Layer Match Names: matchnames/layer/lightlayer.md
- Text Layer Match Names: matchnames/layer/textlayer.md
- Shape Layer Match Names: matchnames/layer/shapelayer.md
- Layer Styles Match Names: matchnames/layer/layerstyles.md
- Effects:
- First-Party Effect Match Names: matchnames/effects/firstparty.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: {}