Skip to content

Commit 4fdb394

Browse files
committed
Swap <ul> in tables with grid tables
1 parent 88ec7bd commit 4fdb394

File tree

7 files changed

+198
-58
lines changed

7 files changed

+198
-58
lines changed

docs/general/application.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -793,9 +793,17 @@ Purges unused data of the specified types. Replicates the Purge options in the E
793793

794794
#### Parameters
795795

796-
| Parameter | Type | Description |
797-
| --------- | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
798-
| `target` | `PurgeTarget` enum | The type of elements to purge from memory. One of:<ul><li>`PurgeTarget.ALL_CACHES`: Purges all data that After Effects has cached to both RAM and disk cache.</li><li>`PurgeTarget.ALL_MEMORY_CACHES`: Purges all data that After Effects has cached to RAM. *(new in 24.3)*</li><li>`PurgeTarget.UNDO_CACHES`: Purges all data saved in the undo cache.</li><li>`PurgeTarget.SNAPSHOT_CACHES`: Purges all data cached as composition/layer snapshots.</li><li>`PurgeTarget.IMAGE_CACHES`: Purges all saved image data.</li></ul> |
796+
+-----------+--------------------+----------------------------------------------------------------------------------------------------------+
797+
| Parameter | Type | Description |
798+
+===========+====================+==========================================================================================================+
799+
| `target` | `PurgeTarget` enum | The type of elements to purge from memory. One of: |
800+
| | | |
801+
| | | - `PurgeTarget.ALL_CACHES`: Purges all data that After Effects has cached to both RAM and disk cache. |
802+
| | | - `PurgeTarget.ALL_MEMORY_CACHES`: Purges all data that After Effects has cached to RAM. *(new in 24.3)* |
803+
| | | - `PurgeTarget.UNDO_CACHES`: Purges all data saved in the undo cache. |
804+
| | | - `PurgeTarget.SNAPSHOT_CACHES`: Purges all data cached as composition/layer snapshots. |
805+
| | | - `PurgeTarget.IMAGE_CACHES`: Purges all saved image data. |
806+
+-----------+--------------------+----------------------------------------------------------------------------------------------------------+
799807

800808
#### Returns
801809

docs/general/project.md

+18-8
Original file line numberDiff line numberDiff line change
@@ -657,10 +657,15 @@ Closes the project with the option of saving changes automatically, prompting th
657657

658658
#### Parameters
659659

660-
| Parameter | Type | Description |
661-
| -------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
662-
| `closeOptions` | `CloseOptions` enum | Action to be performed on close. One of:<ul><li>`CloseOptions.DO_NOT_SAVE_CHANGES`: Close without saving.</li><li>`CloseOptions.PROMPT_TO_SAVE_CHANGES`: Prompt for whether to save changes before close.</li><li>`CloseOptions.SAVE_CHANGES`: Save automatically on close.</li></ul> |
663-
660+
+----------------+---------------------+-------------------------------------------------------------------------------------------+
661+
| Parameter | Type | Description |
662+
+================+=====================+===========================================================================================+
663+
| `closeOptions` | `CloseOptions` enum | Action to be performed on close. One of: |
664+
| | | |
665+
| | | - `CloseOptions.DO_NOT_SAVE_CHANGES`: Close without saving. |
666+
| | | - `CloseOptions.PROMPT_TO_SAVE_CHANGES`: Prompt for whether to save changes before close. |
667+
| | | - `CloseOptions.SAVE_CHANGES`: Save automatically on close. |
668+
+----------------+---------------------+-------------------------------------------------------------------------------------------+
664669

665670
#### Returns
666671

@@ -1314,10 +1319,15 @@ Resolves a conflict between the open team project and the version on the team pr
13141319
13151320
#### Parameters
13161321
1317-
| Parameter | Type | Description |
1318-
| ------------- | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
1319-
| `ResolveType` | `ResolveType` enum | The type of conflict resolution to use. One of:<ul><li>`ResolveType.ACCEPT_THEIRS`: Take the shared version. The shared version replaces your version.</li><li>`ResolveType.ACCEPT_YOURS`: Keep your version of the project. The shared version is not taken.</li><li>`ResolveType.ACCEPT_THEIRS_AND_COPY`: Copy and rename your version, then take the shared version. The shared version replaces your original version.</li></ul> |
1320-
1322+
+---------------+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1323+
| Parameter | Type | Description |
1324+
+===============+====================+========================================================================================================================================================+
1325+
| `ResolveType` | `ResolveType` enum | The type of conflict resolution to use. One of: |
1326+
| | | |
1327+
| | | - `ResolveType.ACCEPT_THEIRS`: Take the shared version. The shared version replaces your version. |
1328+
| | | - `ResolveType.ACCEPT_YOURS`: Keep your version of the project. The shared version is not taken. |
1329+
| | | - `ResolveType.ACCEPT_THEIRS_AND_COPY`: Copy and rename your version, then take the shared version. The shared version replaces your original version. |
1330+
+---------------+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
13211331
13221332
#### Returns
13231333

docs/layer/layer.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -446,9 +446,16 @@ Just as in the UI, `doSceneEditDetection` will fail and error if called on a non
446446

447447
#### Parameters
448448

449-
| Parameter | Type | Description |
450-
| -------------- | ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
451-
| `applyOptions` | `SceneEditDetectionMode` enum | How the detected edits will be applied. One of:<ul><li>`SceneEditDetectionMode.MARKERS`: Create markers at edit points.</li><li>`SceneEditDetectionMode.SPLIT`: Split layer.</li><li>`SceneEditDetectionMode.SPLIT_PRECOMP`: Split layer at edit points and pre-compose each one.</li><li>`SceneEditDetectionMode.NONE`: Detected edits are not applied to the layer.</li></ul> |
449+
+----------------+-------------------------------+------------------------------------------------------------------------------------------------+
450+
| Parameter | Type | Description |
451+
+================+===============================+================================================================================================+
452+
| `applyOptions` | `SceneEditDetectionMode` enum | How the detected edits will be applied. One of: |
453+
| | | |
454+
| | | - `SceneEditDetectionMode.MARKERS`: Create markers at edit points. |
455+
| | | - `SceneEditDetectionMode.SPLIT`: Split layer. |
456+
| | | - `SceneEditDetectionMode.SPLIT_PRECOMP`: Split layer at edit points and pre-compose each one. |
457+
| | | - `SceneEditDetectionMode.NONE`: Detected edits are not applied to the layer. |
458+
+----------------+-------------------------------+------------------------------------------------------------------------------------------------+
452459

453460
#### Returns
454461

docs/other/importoptions.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,16 @@ Reports whether the file can be imported as the source of a particular object ty
156156

157157
#### Parameters
158158

159-
| Parameter | Type | Description |
160-
| --------- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
161-
| `type` | `ImportAsType` enum. | The type of file that can be imported. One of:<ul><li>`ImportAsType.COMP`</li><li>`ImportAsType.FOOTAGE`</li><li>`ImportAsType.COMP_CROPPED_LAYERS`</li><li>`ImportAsType.PROJECT`</li></ul> |
159+
+-----------+----------------------+------------------------------------------------+
160+
| Parameter | Type | Description |
161+
+===========+======================+================================================+
162+
| `type` | `ImportAsType` enum. | The type of file that can be imported. One of: |
163+
| | | |
164+
| | | - `ImportAsType.COMP` |
165+
| | | - `ImportAsType.FOOTAGE` |
166+
| | | - `ImportAsType.COMP_CROPPED_LAYERS` |
167+
| | | - `ImportAsType.PROJECT` |
168+
+-----------+----------------------+------------------------------------------------+
162169

163170
#### Returns
164171

0 commit comments

Comments
 (0)