Skip to content

Commit 9f712d4

Browse files
committed
Fix links in generate-pdf-files.md to use .md extension for API references
1 parent bb72e81 commit 9f712d4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

_articles/faq/generate-pdf-files.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ It offers better compression support, fewer limitations, and higher compatibilit
4545
### Licensing Requirements
4646
Dynamic Web TWAIN does not require any add-on license to **export** or generate PDF or PDF/A files. However, PDF-Rasterizer Addon would be required when **loading** a PDF/PDF-A file that contains **text or vector graphics**.
4747

48-
You can programmatically check whether a file needs rasterization using [`IsRasterizationRequired()`](/_articles/info/api/Addon_PDF.html#israsterizationrequired):
48+
You can programmatically check whether a file needs rasterization using [`IsRasterizationRequired()`](/_articles/info/api/Addon_PDF.md#israsterizationrequired):
4949

5050
```javascript
5151
DWTObject.Addon.PDF.IsRasterizationRequired(path); // returns true or false
@@ -61,7 +61,7 @@ DWTObject.Addon.PDF.IsRasterizationRequired(path); // returns true or false
6161

6262
### How to Export as PDF/A
6363

64-
Configure PDF output using [`Write.Setup()`](/_articles/info/api/Addon_PDF.html#writesetup) before calling any save function.
64+
Configure PDF output using [`Write.Setup()`](/_articles/info/api/Addon_PDF.md#writesetup) before calling any save function.
6565

6666
```javascript
6767
DWTObject.Addon.PDF.Write.Setup({
@@ -72,10 +72,10 @@ DWTObject.Addon.PDF.Write.Setup({
7272

7373
After configuring `pdfaVersion`, all APIs that output PDF files will automatically generate PDF/A-compliant PDFs. This includes, but is not limited to:
7474

75-
- **Save APIs** like: [`SaveAsPDF()`](/_articles/info/api/WebTwain_IO.html#saveaspdf), [`SaveSelectedImagesAsMultiPagePDF()`](/_articles/info/api/WebTwain_IO.html#saveselectedimagesasmultipagepdf), [`SaveAllAsPDF()`](/_articles/info/api/WebTwain_IO.html#saveallaspdf)
75+
- **Save APIs** like: [`SaveAsPDF()`](/_articles/info/api/WebTwain_IO.md#saveaspdf), [`SaveSelectedImagesAsMultiPagePDF()`](/_articles/info/api/WebTwain_IO.md#saveselectedimagesasmultipagepdf), [`SaveAllAsPDF()`](/_articles/info/api/WebTwain_IO.md#saveallaspdf)
7676

77-
- **Conversion APIs** like: [`ConvertToBlob()`](/_articles/info/api/WebTwain_IO.html#converttoblob), [`ConvertToBase64()`](/_articles/info/api/WebTwain_IO.html#converttobase64)
77+
- **Conversion APIs** like: [`ConvertToBlob()`](/_articles/info/api/WebTwain_IO.md#converttoblob), [`ConvertToBase64()`](/_articles/info/api/WebTwain_IO.md#converttobase64)
7878

79-
- **Upload APIs** like: [`HTTPUpload()`](/_articles/info/api/WebTwain_IO.html#httpupload), [`FTPUpload()`](/_articles/info/api/WebTwain_IO.html#ftpupload), [`httpUploadBlob()`](/_articles/info/api/WebTwain_IO.html#httpuploadblob)
79+
- **Upload APIs** like: [`HTTPUpload()`](/_articles/info/api/WebTwain_IO.md#httpupload), [`FTPUpload()`](/_articles/info/api/WebTwain_IO.md#ftpupload), [`httpUploadBlob()`](/_articles/info/api/WebTwain_IO.md#httpuploadblob)
8080

81-
- **OCR Output APIs** like: [`SaveToPath()`](/_articles/info/api/Addon_OCR.html#savetopath), [`SaveAsBase64()`](/_articles/info/api/Addon_OCR.html#saveasbase64), [`SaveAsBlob()`](/_articles/info/api/Addon_OCR.html#saveasblob)
81+
- **OCR Output APIs** like: [`SaveToPath()`](/_articles/info/api/Addon_OCR.md#savetopath), [`SaveAsBase64()`](/_articles/info/api/Addon_OCR.md#saveasbase64), [`SaveAsBlob()`](/_articles/info/api/Addon_OCR.md#saveasblob)

0 commit comments

Comments
 (0)