Skip to content

Commit 07e3541

Browse files
Docs: Update README.md to remove — and the TOC
1 parent 4c37993 commit 07e3541

File tree

1 file changed

+2
-38
lines changed

1 file changed

+2
-38
lines changed

README.md

Lines changed: 2 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -6,42 +6,6 @@
66
77
This guide walks you through building a web application that scans single-page documents using **DDS**, with **pre-defined configurations**.
88

9-
**Table of Contents**
10-
- [Scan Single-Page Documents with Dynamsoft Document Scanner](#scan-single-page-documents-with-dynamsoft-document-scanner)
11-
- [License](#license)
12-
- [Get a Trial License](#get-a-trial-license)
13-
- [Get a Full License](#get-a-full-license)
14-
- [Quick Start](#quick-start)
15-
- [Option 1: Build from Source](#option-1-build-from-source)
16-
- [Option 2: Use Precompiled Script](#option-2-use-precompiled-script)
17-
- [Hello World Sample Explained](#hello-world-sample-explained)
18-
- [Reference DDS](#reference-dds)
19-
- [Instantiate DDS](#instantiate-dds)
20-
- [Launch DDS](#launch-dds)
21-
- [Display the Result](#display-the-result)
22-
- [Custom Usage](#custom-usage)
23-
- [DocumentScannerConfig Overview](#documentscannerconfig-overview)
24-
- [Workflow Customization](#workflow-customization)
25-
- [Example 1: Specify the Container for DocumentScanner](#example-1-specify-the-container-for-documentscanner)
26-
- [Example 2: Specify Only the Container for DocumentScannerView](#example-2-specify-only-the-container-for-documentscannerview)
27-
- [Example 3: Specify Individual View Containers](#example-3-specify-individual-view-containers)
28-
- [View-Based Customization](#view-based-customization)
29-
- [`DocumentScannerView` Configuration](#documentscannerview-configuration)
30-
- [Steps to Customize the UI for `DocumentScannerView`](#steps-to-customize-the-ui-for-documentscannerview)
31-
- [Styling Buttons](#styling-buttons)
32-
- [Customizing Apply Button Callback](#customizing-apply-button-callback)
33-
- [`DocumentResultView` Configuration](#documentresultview-configuration)
34-
- [Styling Buttons](#styling-buttons-1)
35-
- [Customizing the "Done" Button Callback](#customizing-the-done-button-callback)
36-
- [Customizing the "Upload" Button](#customizing-the-upload-button)
37-
- [Self-Hosting Resource Files](#self-hosting-resource-files)
38-
- [Modify the Build Script](#modify-the-build-script)
39-
- [Update the Engine Resource Paths](#update-the-engine-resource-paths)
40-
- [Update the UI Configuration](#update-the-ui-configuration)
41-
- [Build the Project](#build-the-project)
42-
- [Serve the Project Locally](#serve-the-project-locally)
43-
- [Next Step](#next-step)
44-
459
## License
4610

4711
### Get a Trial License
@@ -186,7 +150,7 @@ Alternatively, the script can be referenced from a CDN:
186150
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dds.bundle.js"></script>
187151
```
188152
189-
**DDS** wraps all its dependency scripts, so a **DDS** project only needs to include **DDS** itself as a single script — no additional dependency scripts are required.
153+
**DDS** wraps all its dependency scripts, so a **DDS** project only needs to include **DDS** itself as a single script. No additional dependency scripts are required.
190154
191155
> ⚠**IMPORTANT**: Even if you reference the script locally, supporting resources like `.wasm` engine files are **still loaded from the CDN at runtime**. If you require a **fully offline setup**, follow the instructions in [Self-Hosting Resource File](#self-hosting-resource-files).
192156
@@ -343,7 +307,7 @@ const documentScanner = new Dynamsoft.DocumentScanner({
343307
344308
#### Example 3: Specify Individual View Containers
345309
346-
If only the `DocumentScannerView`, `DocumentResultView`, and `DocumentCorrectionView` containers are provided — without the `DocumentScanner` container — DDS renders the full workflow using these three containers
310+
If only the `DocumentScannerView` container is provided, **DDS** displays only the `DocumentScannerView` and returns the scan result from `DocumentScanner.launch()` immediately after a successful scan.
347311
348312
```html
349313
<div id="myDocumentScannerViewContainer" style="width: 80vw; height: 80vh"></div>

0 commit comments

Comments
 (0)