Skip to content

Commit e07f79a

Browse files
committed
Fix unnecessary linebreaks
1 parent 393ae63 commit e07f79a

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

docs/layer/sub-objects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ source.layer(1).position
4141
### Layer.effect()
4242

4343
`thisLayer.effect(name)`
44-
</br>
44+
4545
`thisLayer.effect(index)`
4646

4747
#### Description
@@ -79,7 +79,7 @@ thisLayer.effect(1)
7979
### Layer.mask()
8080

8181
`thisLayer.mask(name)`
82-
</br>
82+
8383
`thisLayer.mask(index)`
8484

8585
#### Description

docs/objects/comp.md

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

33
`thisComp`
4-
<br/>
4+
55
`comp("CompName")`
6-
<br/>
6+
77
`layer("layerName").source`
88

99
These attributes and methods can be called on Comp objects.
@@ -240,9 +240,9 @@ Apply the following expression to the Position property of a layer to center the
240240
### Comp.layer()
241241

242242
`thisComp.layer(index)`
243-
<br/>
243+
244244
`thisComp.layer(name)`
245-
<br/>
245+
246246
`thisComp.layer(otherLayer, relIndex)`
247247

248248
#### Description

docs/objects/effect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Boolean
3030
### Effect.param()
3131

3232
`thisLayer.effect("Bulge").param(name)`
33-
</br>
33+
3434
`thisLayer.effect("Bulge").param(index)`
3535

3636
#### Description

docs/objects/marker-property.md

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

33
`thisComp.marker`
4-
<br/>
4+
55
`comp("CompName").marker`
6-
<br/>
6+
77
`layer("precompName").source.marker`
8-
<br/>
8+
99
`thisLayer.marker`
1010

1111
The Marker Property is a special version of the [Property](./property.md) object *specifically* for composition & layer markers.
@@ -38,7 +38,7 @@ Number
3838
### Marker.key(index)
3939

4040
`thisComp.marker.key(index)`
41-
</br>
41+
4242
`thisComp.marker.key(name)`
4343

4444
#### Description

docs/objects/path-property.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Path Property
22

33
`thisLayer.mask("Mask 1").maskPath`
4-
<br/>
4+
55
`thisLayer.content("Shape 1").content("Path 1").path;`
66

77
!!! note
@@ -49,7 +49,7 @@ The points and tangents of the same path can be passed into `createPath()` with
4949
| Parameter | Type | Description |
5050
| ------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
5151
| `points` | Array of number pair arrays | Optional. An array of number pair arrays representing the `[x, y]` coordinates of the points. The array must contain at least 1 item, and can be of any greater length. Defaults to `[[0,0], [100,0], [100,100], [0,100]]`. |
52-
| `inTangents` | Array of number pair arrays | Optional. An array of number pair arrays representing their `[x, y]` *offset* coordinates. The length of this array must be exactly the same as the `points` parameter. Defaults to `[]`.</br></br>Coordinate values are offset relative to the parent point's coordinates. i.e. The value `[0, 0]` creates no curvature at the incoming tangent. |
52+
| `inTangents` | Array of number pair arrays | Optional. An array of number pair arrays representing their `[x, y]` *offset* coordinates. The length of this array must be exactly the same as the `points` parameter. Defaults to `[]`.<br/><br/>Coordinate values are offset relative to the parent point's coordinates. i.e. The value `[0, 0]` creates no curvature at the incoming tangent. |
5353
| `outTangents` | Array of number pair arrays | Optional. See `inTangents`. Defaults to `[]`. |
5454
| `is_closed` | Boolean | Optional. Defaults to `true`. |
5555

0 commit comments

Comments
 (0)