Skip to content

Commit 20a4308

Browse files
committed
Style consistency
1 parent 1b3c4bb commit 20a4308

File tree

5 files changed

+23
-20
lines changed

5 files changed

+23
-20
lines changed

docs/item/projectitem.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ An array of project items, contained within the specified project item.
3030

3131
#### Description
3232

33-
The audio channel mapping currently applied to this **projectItem**.
33+
The audio channel mapping currently applied to this ProjectItem.
3434

3535
#### Type
3636

@@ -318,8 +318,8 @@ Creates a new project item for a sub-clip of the existing project item.
318318
| Argument | Type | Description |
319319
| ------------------- | ------- | ------------------------------------------ |
320320
| `name` | String | A name of a new subclip. |
321-
| `startTime` | String | Start time of subclip, in Ticks. |
322-
| `endTime` | String | End time of subclip, in Ticks. |
321+
| `startTime` | String | Start time of subclip, in ticks. |
322+
| `endTime` | String | End time of subclip, in ticks. |
323323
| `hasHardBoundaries` | Integer | If `1`, the user cannot extend in and out. |
324324
| `takeVideo` | Integer | If `1`, use video from source. |
325325
| `takeAudio` | Integer | If `1`, use audio from source. |
@@ -930,7 +930,7 @@ Sets the in point to `timeInTicks`, for specified media types.
930930

931931
| Argument | Type | Description |
932932
| ----------- | ------- | ---------------------------------------------------------------------------------------------------------------- |
933-
| `time` | String | A time in **Ticks**. |
933+
| `time` | String | A time in ticks. |
934934
| `mediaType` | Integer | Determining which media type to affect; pass `1` for video only, `2` for audio only, or `4` for all media types. |
935935

936936
#### Returns
@@ -969,7 +969,7 @@ Sets the out point to `timeInTicks`, for specified media types.
969969

970970
| Argument | Type | Description |
971971
| ----------- | ------- | ---------------------------------------------------------------------------------------------------------------- |
972-
| `time` | String | A time in **Ticks**. |
972+
| `time` | String | A time in ticks. |
973973
| `mediaType` | Integer | Determining which media type to affect; pass `1` for video only, `2` for audio only, or `4` for all media types. |
974974

975975
#### Returns
@@ -1068,9 +1068,9 @@ Assigns a new start time to the project item
10681068

10691069
#### Parameters
10701070

1071-
| Argument | Type | Description |
1072-
| -------- | ------ | ---------------------------------------------- |
1073-
| `time` | String | A new starting time, represented in **Ticks**. |
1071+
| Argument | Type | Description |
1072+
| -------- | ------ | ------------------------------------------ |
1073+
| `time` | String | A new starting time, represented in ticks. |
10741074

10751075
#### Returns
10761076

docs/item/trackitem.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,10 @@ The mediaType of media provided by this trackItem.
114114

115115
#### Type
116116

117-
String, either **Audio** or **Video**.
117+
String, one of:
118+
119+
- `"Audio"`
120+
- `"Video"`
118121

119122
---
120123

@@ -216,7 +219,7 @@ The type of media provided by this trackItem.
216219

217220
#### Type
218221

219-
Number, **1** means video, **2** means audio.
222+
Number, `1` means video, `2` means audio.
220223

221224
---
222225

docs/sequence/componentparam.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#### Description
99

10-
The **component parameter** object represents a parameter associated with a component, applied to a [TrackItem object](../item/trackitem.md).
10+
The ComponentParam object represents a parameter associated with a component, applied to a [TrackItem object](../item/trackitem.md).
1111

1212
!!! note
1313
For a developer working across different localizations, it's possible to find the corresponding keys by comparing ZStrings.
@@ -96,10 +96,10 @@ Sets whether the component parameter varies, over time. Note: This can only be s
9696

9797
#### Parameters
9898

99-
| Argument | Type | Description |
100-
| ------------- | ------- | ------------------------------------------------------- |
101-
| `timeToCheck` | | Start search from a given time |
102-
| `threshold` | Integer | A temporal distance, in either direction, in **ticks**. |
99+
| Argument | Type | Description |
100+
| ------------- | ------- | --------------------------------------------------- |
101+
| `timeToCheck` | | Start search from a given time |
102+
| `threshold` | Integer | A temporal distance, in either direction, in ticks. |
103103

104104
#### Returns
105105

docs/sequence/sequence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#### Description
66

7-
The **Sequence** object represents sequences of media, or 'timelines', in Premiere Pro.
7+
The Sequence object represents sequences of media, or 'timelines', in Premiere Pro.
88

99
---
1010

@@ -866,7 +866,7 @@ Returns a boolean; `true` if successful.
866866

867867
#### Description
868868

869-
Inserts a clip into the sequence, **overwriting existing clips**, on the specified video and audio tracks, at the specified time.
869+
Inserts a clip into the sequence, *overwriting existing clips*, on the specified video and audio tracks, at the specified time.
870870

871871
#### Parameters
872872

docs/sequence/track.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#### Description
99

10-
The **Track** object represents a video or audio track, within a [Sequence object](sequence.md).
10+
The Track object represents a video or audio track, within a [Sequence object](sequence.md).
1111

1212
---
1313

@@ -119,7 +119,7 @@ Adds a 'clip' (media segment from a [ProjectItem object](../item/projectitem.md)
119119
| Argument | Type | Description |
120120
| ------------- | -------------------------------------------- | --------------------------------------------------------- |
121121
| `projectItem` | [ProjectItem object](../item/projectitem.md) | A project item from which to get media. |
122-
| `time` | String | The time at which to add project item, in Ticks. |
122+
| `time` | String | The time at which to add project item, in ticks. |
123123
| `vTrackIndex` | Integer | The (zero-based) track index, into which to insert video. |
124124
| `aTrackIndex` | Integer | The (zero-based) track index, into which to insert audio. |
125125

@@ -166,7 +166,7 @@ Adds a 'clip' (media segment from a [ProjectItem object](../item/projectitem.md)
166166
| Argument | Type | Description |
167167
| ------------- | -------------------------------------------- | ------------------------------------------------ |
168168
| `projectItem` | [ProjectItem object](../item/projectitem.md) | A project item from which to get media. |
169-
| `time` | String | The time at which to add project item, in Ticks. |
169+
| `time` | String | The time at which to add project item, in ticks. |
170170

171171
#### Returns
172172

0 commit comments

Comments
 (0)