-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmkdocs.yml
145 lines (133 loc) · 5.01 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# Site metadata
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"
# Customize navigation
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
# Do not touch below-- shared for all docs
copyright: All content is copyright Adobe Systems Incorporated.
extra:
homepage: https://docsforadobe.dev
theme:
name: material
custom_dir: overrides
features:
- announce.dismiss
- content.action.edit
- content.action.view
- search.highlight
- search.suggest
- toc.follow
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: black
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: white
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
extra_css:
# CSS shared between the whole org
- https://docsforadobe.dev/_global/global.css
- https://docsforadobe.dev/_global/global-syntax-highlight.css
# CSS specific to this file
- _static/extra.css
markdown_extensions:
- admonition
- pymdownx.superfences
- toc:
title: Page Contents
permalink: true
toc_depth: 3
plugins:
- git-revision-date-localized
- search:
separator: '[\s\-,\.:!=\[\]()"/]+'
# Note: print-site must be last!
- print-site:
add_cover_page: true
add_print_site_banner: true
cover_page_template: "overrides/templates/print_site_cover_page.tpl"
print_page_title: "Offline Docs"
print_site_banner_template: "overrides/templates/print_site_banner.tpl"