Skip to content

Commit 897092a

Browse files
committed
Remove unnecessary <br/>
1 parent 6fafb20 commit 897092a

File tree

10 files changed

+178
-178
lines changed

10 files changed

+178
-178
lines changed

docs/collection/componentcollection.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# ComponentCollection object
22

33
`app.project.rootItem.children[index].videoComponents()`
4-
<br/>
4+
55
`app.project.sequences[index].audioTracks[index].clips[index].components`
6-
<br/>
6+
77
`app.project.sequences[index].videoTracks[index].clips[index].components`
8-
<br/>
8+
99

1010
!!! info
1111
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.
@@ -17,11 +17,11 @@
1717
### ComponentCollection.numItems
1818

1919
`app.project.rootItem.children[index].videoComponents().numItems`
20-
<br/>
20+
2121
`app.project.sequences[index].audioTracks[index].clips[index].components.numItems`
22-
<br/>
22+
2323
`app.project.sequences[index].videoTracks[index].clips[index].components.numItems`
24-
<br/>
24+
2525

2626
#### Description
2727

docs/collection/markercollection.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# MarkerCollection object
22

33
`app.project.sequences[index].markers`
4-
<br/>
4+
55
`app.project.rootItem.children[index].getMarkers()`
6-
<br/>
6+
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

@@ -17,9 +17,9 @@ The MarkerCollection object represents a collection of [Marker objects](../gener
1717
### MarkerCollection.numMarkers
1818

1919
`app.project.sequences[index].markers.numMarkers`
20-
<br/>
20+
2121
`app.project.rootItem.children[index].getMarkers().numMarkers`
22-
<br/>
22+
2323

2424
#### Description
2525

@@ -36,9 +36,9 @@ Integer, read-only.
3636
### MarkerCollection.createMarker()
3737

3838
`app.project.sequences[index].markers.createMarker(time)`
39-
<br/>
39+
4040
`app.project.rootItem.children[index].getMarkers().createMarker(time)`
41-
<br/>
41+
4242

4343
#### Description
4444

@@ -59,9 +59,9 @@ Create a new [Marker object](../general/marker.md) on a project item or a sequen
5959
### MarkerCollection.deleteMarker()
6060

6161
`app.project.sequences[index].markers.deleteMarker(marker)`
62-
<br/>
62+
6363
`app.project.rootItem.children[index].getMarkers().deleteMarker(marker)`
64-
<br/>
64+
6565

6666
#### Description
6767

@@ -99,9 +99,9 @@ alert('Removed ' + count.toString() + ' markers');
9999
### MarkerCollection.getFirstMarker()
100100

101101
`app.project.sequences[index].markers.getFirstMarker()`
102-
<br/>
102+
103103
`app.project.rootItem.children[index].getMarkers().getFirstMarker()`
104-
<br/>
104+
105105

106106
#### Description
107107

@@ -120,9 +120,9 @@ None.
120120
### MarkerCollection.getLastMarker()
121121

122122
`app.project.sequences[index].markers.getLastMarker()`
123-
<br/>
123+
124124
`app.project.rootItem.children[index].getMarkers().getLastMarker()`
125-
<br/>
125+
126126

127127
#### Description
128128

@@ -141,9 +141,9 @@ None.
141141
### MarkerCollection.getNextMarker()
142142

143143
`app.project.sequences[index].markers.getNextMarker(currentMarker)`
144-
<br/>
144+
145145
`app.project.rootItem.children[index].getMarkers().getNextMarker(currentMarker)`
146-
<br/>
146+
147147

148148
#### Description
149149

@@ -164,9 +164,9 @@ Get the next available marker, sorted by seconds, starting from a given one.
164164
### MarkerCollection.getPrevMarker()
165165

166166
`app.project.sequences[index].markers.getPrevMarker(currentMarker)`
167-
<br/>
167+
168168
`app.project.rootItem.children[index].getMarkers().getPrevMarker(currentMarker)`
169-
<br/>
169+
170170

171171
#### Description
172172

docs/collection/projectcollection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# ProjectCollection object
22

33
`app.projects`
4-
<br/>
4+
55
`app.production.projects`
6-
<br/>
6+
77

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

@@ -17,9 +17,9 @@ The ProjectCollection object represents a collection of [Project objects](../gen
1717
### ProjectCollection.numProjects
1818

1919
`app.projects.numProjects`
20-
<br/>
20+
2121
`app.production.projects.numProjects`
22-
<br/>
22+
2323

2424
#### Description
2525

docs/collection/trackcollection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# TrackCollection object
22

33
`app.project.sequences[index].audioTracks`
4-
<br/>
4+
55
`app.project.sequences[index].videoTracks`
6-
<br/>
6+
77

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

@@ -17,9 +17,9 @@ The TrackCollection object represents a collection of [Track objects](../sequenc
1717
### TrackCollection.numTracks
1818

1919
`app.project.sequences[index].audioTracks.numTracks`
20-
<br/>
20+
2121
`app.project.sequences[index].videoTracks.numTracks`
22-
<br/>
22+
2323

2424
#### Description
2525

docs/collection/trackitemcollection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# TrackItemCollection object
22

33
`app.project.sequences[index].audioTracks[index].clips`
4-
<br/>
4+
55
`app.project.sequences[index].videoTracks[index].clips`
6-
<br/>
6+
77

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

@@ -17,9 +17,9 @@ The TrackItemCollection object represents a collection of [TrackItem objects](..
1717
### TrackItemCollection.numItems
1818

1919
`app.project.sequences[index].audioTracks[index].clips.numItems`
20-
<br/>
20+
2121
`app.project.sequences[index].videoTracks[index].clips.numItems`
22-
<br/>
22+
2323

2424
#### Description
2525

docs/general/marker.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Marker object
22

33
`app.project.activeSequence.markers.getFirstMarker()`
4-
<br/>
4+
55
`app.project.rootItem.children[index].getMarkers().getFirstMarker()`
6-
<br/>
6+
77

88
#### Description
99

@@ -16,9 +16,9 @@ Both [Project items](../item/projectitem.md) and [sequences](../sequence/sequenc
1616
### Marker.comments
1717

1818
`app.project.activeSequence.markers.getFirstMarker().comments`
19-
<br/>
19+
2020
`app.project.rootItem.children[index].getMarkers().getFirstMarker().comments`
21-
<br/>
21+
2222

2323
#### Description
2424

@@ -33,9 +33,9 @@ String; read/write.
3333
### Marker.end
3434

3535
`app.project.activeSequence.markers.getFirstMarker().end`
36-
<br/>
36+
3737
`app.project.rootItem.children[index].getMarkers().getFirstMarker().end`
38-
<br/>
38+
3939

4040
#### Description
4141

@@ -50,9 +50,9 @@ A [Time object](../other/time.md) containing the value of the ending of the mark
5050
### Marker.guid
5151

5252
`app.project.activeSequence.markers.getFirstMarker().guid`
53-
<br/>
53+
5454
`app.project.rootItem.children[index].getMarkers().getFirstMarker().guid`
55-
<br/>
55+
5656

5757
#### Description
5858

@@ -67,9 +67,9 @@ String; read-only.
6767
### Marker.name
6868

6969
`app.project.activeSequence.markers.getFirstMarker().name`
70-
<br/>
70+
7171
`app.project.rootItem.children[index].getMarkers().getFirstMarker().name`
72-
<br/>
72+
7373

7474
#### Description
7575

@@ -84,9 +84,9 @@ String; read/write.
8484
### Marker.start
8585

8686
`app.project.activeSequence.markers.getFirstMarker().start`
87-
<br/>
87+
8888
`app.project.rootItem.children[index].getMarkers().getFirstMarker().start`
89-
<br/>
89+
9090

9191
#### Description
9292

@@ -101,9 +101,9 @@ A [Time object](../other/time.md) containing the value of the beginning of the m
101101
### Marker.type
102102

103103
`app.project.activeSequence.markers.getFirstMarker().type`
104-
<br/>
104+
105105
`app.project.rootItem.children[index].getMarkers().getFirstMarker().type`
106-
<br/>
106+
107107

108108
#### Description
109109

@@ -128,9 +128,9 @@ String; read-only.
128128
### Marker.getColorByIndex()
129129

130130
`app.project.activeSequence.markers.getFirstMarker().getColorByIndex(index)`
131-
<br/>
131+
132132
`app.project.rootItem.children[index].getMarkers().getFirstMarker().getColorByIndex(index)`
133-
<br/>
133+
134134

135135
!!! note
136136
This functionality was added in Adobe Premire Pro 13.x.
@@ -154,9 +154,9 @@ Returns the color index as an Integer.
154154
### Marker.getWebLinkFrameTarget()
155155

156156
`app.project.activeSequence.markers.getFirstMarker().getWebLinkFrameTarget()`
157-
<br/>
157+
158158
`app.project.rootItem.children[index].getMarkers().getFirstMarker().getWebLinkFrameTarget()`
159-
<br/>
159+
160160

161161
#### Description
162162

@@ -175,9 +175,9 @@ Returns a String containing the frame target, or `0` if unsuccessful.
175175
### Marker.getWebLinkURL()
176176

177177
`app.project.activeSequence.markers.getFirstMarker().getWebLinkURL()`
178-
<br/>
178+
179179
`app.project.rootItem.children[index].getMarkers().getFirstMarker().getWebLinkURL()`
180-
<br/>
180+
181181

182182
#### Description
183183

@@ -196,9 +196,9 @@ Returns a String containing the URL, or `0` if unsuccessful.
196196
### Marker.setColorByIndex()
197197

198198
`app.project.activeSequence.markers.getFirstMarker().setColorByIndex(colorIndex, markerIndex)`
199-
<br/>
199+
200200
`app.project.rootItem.children[index].getMarkers().getFirstMarker().setColorByIndex(colorIndex, markerIndex)`
201-
<br/>
201+
202202

203203
!!! note
204204
This functionality was added in Adobe Premire Pro 13.x.
@@ -232,9 +232,9 @@ Returns `undefined`.
232232
### Marker.setTypeAsChapter()
233233

234234
`app.project.activeSequence.markers.getFirstMarker().setTypeAsChapter()`
235-
<br/>
235+
236236
`app.project.rootItem.children[index].getMarkers().getFirstMarker().setTypeAsChapter()`
237-
<br/>
237+
238238

239239
#### Description
240240

@@ -253,9 +253,9 @@ Returns `0` if successful.
253253
### Marker.setTypeAsComment()
254254

255255
`app.project.activeSequence.markers.getFirstMarker().setTypeAsComment()`
256-
<br/>
256+
257257
`app.project.rootItem.children[index].getMarkers().getFirstMarker().setTypeAsComment()`
258-
<br/>
258+
259259

260260
#### Description
261261

@@ -274,9 +274,9 @@ Returns `0` if successful.
274274
### Marker.setTypeAsSegmentation()
275275

276276
`app.project.activeSequence.markers.getFirstMarker().setTypeAsSegmentation()`
277-
<br/>
277+
278278
`app.project.rootItem.children[index].getMarkers().getFirstMarker().setTypeAsSegmentation()`
279-
<br/>
279+
280280

281281
#### Description
282282

@@ -295,9 +295,9 @@ Returns `0` if successful.
295295
### Marker.setTypeAsWebLink()
296296

297297
`app.project.activeSequence.markers.getFirstMarker().setTypeAsWebLink()`
298-
<br/>
298+
299299
`app.project.rootItem.children[index].getMarkers().getFirstMarker().setTypeAsWebLink()`
300-
<br/>
300+
301301

302302
#### Description
303303

0 commit comments

Comments
 (0)