Skip to content

Commit feaf0cd

Browse files
committed
Setup internal crosslinks
1 parent 8bb00db commit feaf0cd

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

docs/reference/Application.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Get the encoder host object.
8282

8383
#### Returns
8484

85-
[EncoderHostScript Object](./todo.md)
85+
[EncoderHostScript Object](./EncoderHostScript.md)
8686

8787
---
8888

@@ -96,7 +96,7 @@ Get the exporter object.
9696

9797
#### Returns
9898

99-
[ExporterScript Object](./todo.md)
99+
[ExporterScript Object](./ExporterScript.md)
100100

101101
#### Example
102102

@@ -117,7 +117,7 @@ Get the front end object.
117117

118118
#### Returns
119119

120-
[FrontendScript Object](./todo.md)
120+
[FrontendScript Object](./FrontendScript.md)
121121

122122
---
123123

@@ -131,7 +131,7 @@ Get the watch folder object.
131131

132132
#### Returns
133133

134-
[WatchFolderScript Object](./todo.md)
134+
[WatchFolderScript Object](./WatchFolderScript.md)
135135

136136
---
137137

docs/reference/EncoderHostScript.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pause or stop the batch.
1515

1616
#### Description
1717

18-
Creates an [EncoderWrapper](./todo.md) for the requested format.
18+
Creates an [EncoderWrapper](./EncoderWrapper.md) for the requested format.
1919

2020
#### Parameters
2121

@@ -25,7 +25,7 @@ Creates an [EncoderWrapper](./todo.md) for the requested format.
2525

2626
#### Returns
2727

28-
[EncoderWrapper object](./todo.md)
28+
[EncoderWrapper object](./EncoderWrapper.md)
2929

3030
---
3131

@@ -102,7 +102,7 @@ Gets detailed info about a provided source.
102102

103103
#### Returns
104104

105-
[SourceMediaInfo object](./todo.md)
105+
[SourceMediaInfo object](./SourceMediaInfo.md)
106106

107107
---
108108

docs/reference/ExporterScript.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Export the source with the provided preset.
238238

239239
#### Returns
240240

241-
[EncoderWrapper object](./todo.md)
241+
[EncoderWrapper object](./EncoderWrapper.md)
242242

243243
#### Example
244244

@@ -446,11 +446,11 @@ if (exporter) {
446446

447447
### ExporterScript.getSourceMediaInfo()
448448

449-
`app.getExporter().getSourceMediaInfo(sourcePath): [SourceMediaInfo object](./todo.md)`
449+
`app.getExporter().getSourceMediaInfo(sourcePath)`
450450

451451
#### Description
452452

453-
Returns a [SourceMediaInfo](./todo.md) object.
453+
Returns a [SourceMediaInfo](./SourceMediaInfo.md) object.
454454

455455
#### Parameters
456456

@@ -460,7 +460,7 @@ Returns a [SourceMediaInfo](./todo.md) object.
460460

461461
#### Returns
462462

463-
[SourceMediaInfo object](./todo.md)
463+
[SourceMediaInfo object](./SourceMediaInfo.md)
464464

465465
#### Example
466466

docs/reference/FrontendScript.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ if (frontend) {
8888

8989
#### Description
9090

91-
Adds e.g. an After Effects comp or Premiere Pro sequence to the batch and returns an [EncoderWrapper](./todo.md).
91+
Adds e.g. an After Effects comp or Premiere Pro sequence to the batch and returns an [EncoderWrapper](./EncoderWrapper.md).
9292

9393
#### Parameters
9494

@@ -102,7 +102,7 @@ Adds e.g. an After Effects comp or Premiere Pro sequence to the batch and retur
102102

103103
#### Returns
104104

105-
[EncoderWrapper object](./todo.md)
105+
[EncoderWrapper object](./EncoderWrapper.md)
106106

107107
#### Example
108108

@@ -261,7 +261,7 @@ if (frontend) {
261261

262262
#### Description
263263

264-
Adds a file to the batch and returns an [EncoderWrapper](./todo.md).
264+
Adds a file to the batch and returns an [EncoderWrapper](./EncoderWrapper.md).
265265

266266
#### Parameters
267267

@@ -274,7 +274,7 @@ Adds a file to the batch and returns an [EncoderWrapper](./todo.md).
274274

275275
#### Returns
276276

277-
[EncoderWrapper object](./todo.md)
277+
[EncoderWrapper object](./EncoderWrapper.md)
278278

279279
#### Example
280280

@@ -404,7 +404,7 @@ if (frontend) {
404404

405405
#### Description
406406

407-
Adds a team project item to the batch and returns an [EncoderWrapper](./todo.md).
407+
Adds a team project item to the batch and returns an [EncoderWrapper](./EncoderWrapper.md).
408408

409409
#### Parameters
410410

@@ -417,7 +417,7 @@ Adds a team project item to the batch and returns an [EncoderWrapper](./todo.md)
417417

418418
#### Returns
419419

420-
[EncoderWrapper object](./todo.md)
420+
[EncoderWrapper object](./EncoderWrapper.md)
421421

422422
#### Example
423423

@@ -600,7 +600,7 @@ if (frontend) {
600600

601601
#### Description
602602

603-
Adds a batch item for the given media and returns an [EncoderWrapper](./todo.md).
603+
Adds a batch item for the given media and returns an [EncoderWrapper](./EncoderWrapper.md).
604604

605605
#### Parameters
606606

@@ -613,7 +613,7 @@ Adds a batch item for the given media and returns an [EncoderWrapper](./todo.md)
613613

614614
#### Returns
615615

616-
[EncoderWrapper object](./todo.md)
616+
[EncoderWrapper object](./EncoderWrapper.md)
617617

618618
#### Example
619619

@@ -704,7 +704,7 @@ Boolean
704704

705705
The event will be sent after batch item creation failed.
706706

707-
Can be used for the following [FrontendScript Object](#frontendscriptobject) APIs:
707+
Can be used for the following [FrontendScript Object](#frontendscript-object) APIs:
708708

709709
- [FrontendScript.addFileToBatch()](#frontendscriptaddfiletobatch)
710710
- [FrontendScript.addTeamProjectsItemToBatch()](#frontendscriptaddteamprojectsitemtobatch)
@@ -749,7 +749,7 @@ if (frontend) {
749749

750750
The event will be sent after a batch item has been created successfully.
751751

752-
Can be used for all [FrontendScript Object](#frontendscriptobject) APIs which creates a batch item.
752+
Can be used for all [FrontendScript Object](#frontendscript-object) APIs which creates a batch item.
753753

754754
#### Example
755755

0 commit comments

Comments
 (0)