You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: guides and MWC redirects
feat: update links to guide articles in side tree
fix: remove extra navigation bar file
fix: move MDS release notes
fix: MDS release notes links and content
fix: MDS guide content
fix: broken MDS guide links and liquid macro
chore: remove moved links
Paths to extra resources such as `.wasm` engine files. The default paths point to CDNs and so may be left unset. You may set custom paths for the purpose of [self-hosting resources]({{ site.guides }}mobile-web-capture-customization.html#self-hosting-resource-files).
428
+
Paths to extra resources such as `.wasm` engine files. The default paths point to CDNs and so may be left unset. You may set custom paths for the purpose of [self-hosting resources]({{ site.code-gallery }}mobile-web-capture/customization-guide.html#self-hosting-resource-files).
Copy file name to clipboardExpand all lines: code-gallery/mobile-web-capture/customization-guide.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ description: Mobile Document Scanner JS Edition User Guide
11
11
# How to Customize Mobile Web Capture
12
12
13
13
> [!TIP]
14
-
> Prerequisites: read the [MWC Getting Started Guide]({{ site.guides }}mobile-web-capture.html) before proceeding.
14
+
> Prerequisites: read the [MWC Getting Started Guide]({{ site.guide }}mobile-web-capture/index.html) before proceeding.
15
15
16
16
This guide expands on the **Hello World** sample from the **MWC Getting Started Guide** and explores the available customization options.
17
17
@@ -51,7 +51,7 @@ Keep TOC only for npm /github as readme
51
51
4.`onUploadSuccess`: Specifies a function that is triggered when the upload operation succeeds.
52
52
4.`showLibraryView`: Configures where or not this **MWC** instance starts with the `LibraryView`.
53
53
5.`onClose`: Specifies a function that is triggered when the user closes this **MWC** instance.
54
-
6.`documentScannerConfig`: Configures the behavior of the built-in `DocumentScanner` instance. See the details in [`DocumentScannerConfig`]({{ site.guides }}document-scanner.html#documentscannerconfig-overview).
54
+
6.`documentScannerConfig`: Configures the behavior of the built-in `DocumentScanner` instance. See the details in [`DocumentScannerConfig`]({{ site.guide }}document-scanner.html#documentscannerconfig-overview).
55
55
7.`libraryViewConfig`: Configures the library view with the following properties:
56
56
1.`emptyContentConfig`: Specifies the content displayed in the library view when it is empty (no document).
57
57
2.`toolbarButtonsConfig`: Configures the buttons in the toolbar of the library view.
Copy file name to clipboardExpand all lines: code-gallery/mobile-web-capture/index.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ description: Mobile Document Scanner JS Edition User Guide
21
21
This guide walks you through building a web application that scans multi-page documents using **MWC**, with **pre-defined configurations**.
22
22
23
23
> [!TIP]
24
-
> If you are looking for a solution that scans single-page documents, please read [Mobile Document Scanner User Guide]({{ site.guides }}index.html) instead.
24
+
> If you are looking for a solution that scans single-page documents, please read [Mobile Document Scanner User Guide]({{ site.guide }}index.html) instead.
25
25
26
26
<!--
27
27
Keep TOC only for npm /github as readme
@@ -186,7 +186,7 @@ Alternatively, the script can be referenced from a CDN:
186
186
**MWC** wraps all its dependency scripts, so a **MWC** project only needs to include **MWC** itself as a single script. No additional dependency scripts are required.
187
187
188
188
> [!IMPORTANT]
189
-
> 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]({{ site.guides }}mobile-web-capture-customization.html#self-hosting-resource-files).
189
+
> 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]({{ site.guide }}mobile-web-capture/customization-guide.html#self-hosting-resource-files).
190
190
191
191
### Instantiate MWC
192
192
@@ -199,7 +199,7 @@ const mobileWebCapture = new Dynamsoft.MobileWebCapture({
199
199
200
200
API Reference: [`MobileWebCapture()`](https://www.dynamsoft.com/mobile-web-capture/docs/api/mobile-web-capture.html#mobilewebcapture)
201
201
202
-
This step creates the **MWC** UI, which, when launched, occupies the entire visible area of the browser window by default. If needed, you can specify a container to restrict the UI's size. For more details, refer to [Specify the UI Container]({{ site.guides }}mobile-web-capture-customization.html#example-1-specify-the-ui-container).
202
+
This step creates the **MWC** UI, which, when launched, occupies the entire visible area of the browser window by default. If needed, you can specify a container to restrict the UI's size. For more details, refer to [Specify the UI Container]({{ site.code-gallery }}mobile-web-capture/customization-guide.html#example-1-specify-the-ui-container).
203
203
204
204
> [!WARNING]
205
205
> A **license key** is required for the instantiation.
@@ -234,7 +234,7 @@ The user can:
234
234
5. **Manage** → **Share**: Share individual pages as images (**.PNG**).
235
235
- **Download** is enabled where **Share** is not supported (e.g., in Firefox).
236
236
237
-
The user can also enable the **"Upload"** feature. Check out [Enable File Upload]({{ site.guides }}mobile-web-capture-customization.html#enable-file-upload)
237
+
The user can also enable the **"Upload"** feature. Check out [Enable File Upload]({{ site.code-gallery }}mobile-web-capture/customization-guide.html#enable-file-upload)
238
238
239
239
#### The PageView
240
240
When the user presses an image, the `PageView` is launched for that page, where the user can
@@ -249,8 +249,8 @@ When the user presses an image, the `PageView` is launched for that page, where
249
249
5. **Edit** → **Filter**: Adjust the page's pixels.
250
250
6. **Edit** → **Annotate** : Add annotations to the page.
251
251
252
-
The user can also enable the **"Upload"** feature. Check out [Enable File Upload]({{ site.guides }}mobile-web-capture-customization.html#enable-file-upload)
252
+
The user can also enable the **"Upload"** feature. Check out [Enable File Upload]({{ site.code-gallery }}mobile-web-capture/customization-guide.html#enable-file-upload)
253
253
254
254
## Next Step
255
255
256
-
Mobile Web Capture provides extensive customization options. Read on to explore the available customizations in the [MWC Customization Guide]({{ site.guides }}mobile-web-capture-customization.html).
256
+
Mobile Web Capture provides extensive customization options. Read on to explore the available customizations in the [MWC Customization Guide]({{ site.code-gallery }}mobile-web-capture/customization-guide.html).
0 commit comments