Skip to content

Commit 238f51a

Browse files
committed
Some admonition tweaks
1 parent c3800fe commit 238f51a

File tree

9 files changed

+22
-15
lines changed

9 files changed

+22
-15
lines changed

docs/collection/collection.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ Like an array, a collection associates a set of objects or values as a logical g
1616

1717
## Attributes
1818

19-
| `length` | The number of objects in the collection. |
20-
|------------|--------------------------------------------|
19+
| Attribute | Type | Description |
20+
| --------- | ------- | ---------------------------------------- |
21+
| `length` | Integer | The number of objects in the collection. |
2122

2223
---
2324

2425
## Methods
2526

26-
| `[]` | Retrieves an object in the collection by its index number. The<br/>first object is at index 0. |
27-
|--------|--------------------------------------------------------------------------------------------------|
27+
| Method | Return Type | Description |
28+
| ------ | ----------- | ------------------------------------------------------------------------------------------ |
29+
| `[]` | Object | Retrieves an object in the collection by its index number. The first object is at index 1. |

docs/collection/componentcollection.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
`app.project.sequences[index].videoTracks[index].clips[index].components`
88
<br/>
99

10-
*add a description*
11-
12-
> ComponentCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with ComponentCollection.
10+
!!! info
11+
ComponentCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with ComponentCollection.
1312

1413
---
1514

docs/collection/markercollection.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
The MarkerCollection object represents a collection of [Marker objects](../general/marker.md) in a [ProjectItem object](../item/projectitem.md) and [Sequence object](../sequence/sequence.md).
99

10-
> MarkerCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with MarkerCollection.
10+
!!! info
11+
MarkerCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with MarkerCollection.
1112

1213
---
1314

docs/collection/projectcollection.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
The ProjectCollection object represents a collection of [Project objects](../general/project.md).
99

10-
> ProjectCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with ProjectCollection.
10+
!!! info
11+
ProjectCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with ProjectCollection.
1112

1213
---
1314

docs/collection/projectitemcollection.md

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

55
The ProjectItemCollection object represents a collection of [ProjectItem objects](../item/projectitem.md) in an active project.
66

7-
> ProjectItemCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with ProjectItemCollection.
7+
!!! info
8+
ProjectItemCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with ProjectItemCollection.
89

910
---
1011

docs/collection/sequencecollection.md

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

55
The SequenceCollection object represents a collection of all the [Sequence objects](../sequence/sequence.md) in the active project.
66

7-
> SequenceCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with SequenceCollection.
7+
!!! info
8+
SequenceCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with SequenceCollection.
89

910
---
1011

docs/collection/trackcollection.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
The TrackCollection object represents a collection of [Track objects](../sequence/track.md) in a sequence.
99

10-
> TrackCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with TrackCollection.
10+
!!! info
11+
TrackCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with TrackCollection.
1112

1213
---
1314

docs/collection/trackitemcollection.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
The TrackItemCollection object represents a collection of [TrackItem objects](../item/trackitem.md) on a track.
99

10-
> TrackItemCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with TrackItemCollection.
10+
!!! info
11+
TrackItemCollection is a subclass of [Collection object](collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with TrackItemCollection.
1112

1213
---
1314

docs/item/projectitem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ String; read-only.
136136

137137
#### Description
138138

139-
The current project location of the project item. Example:
139+
The current project location of the project item.
140140

141-
> **\\ProjectName.prproj\\Media\\MXF\\filename.mxf**
141+
Example: `\\ProjectName.prproj\\Media\\MXF\\filename.mxf`
142142

143143
#### Type
144144

0 commit comments

Comments
 (0)