From 844ebb38bc2af5f86b8199e82acd62b856259854 Mon Sep 17 00:00:00 2001 From: Jenny Date: Mon, 6 Mar 2023 16:17:51 +0800 Subject: [PATCH 1/6] Update default-layout.html --- _layouts/default-layout.html | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/_layouts/default-layout.html b/_layouts/default-layout.html index 558248f..d981d72 100644 --- a/_layouts/default-layout.html +++ b/_layouts/default-layout.html @@ -7,25 +7,25 @@ {%- assign noTitleIndex = "noTitleIndex" -%} {%- endif -%} -
+
{%- include page_header.html -%} -
+ {%- include dlrNav.html -%}
Table of contents
-
+
- -
+ +
{%- include main-page-head.html -%}
@@ -59,9 +59,9 @@
-
+ - +
@@ -69,9 +69,9 @@
-
+
{%- include page_footer.html -%} -
+ {%- include livehelp.html -%} From e9eaee868fb90c7291b43eac161cb4aad2ffcb58 Mon Sep 17 00:00:00 2001 From: Jenny Date: Fri, 14 Jul 2023 14:12:51 +0800 Subject: [PATCH 3/6] Update search-page.html --- _layouts/search-page.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_layouts/search-page.html b/_layouts/search-page.html index ea48e0e..a415808 100644 --- a/_layouts/search-page.html +++ b/_layouts/search-page.html @@ -316,12 +316,12 @@

Search

var arr = link.split("?") if(arr[1].indexOf("#") > 0) { var subArr = arr[1].split("#") - link = link +"?product=dbr&repoType="+ repoType +"&" + arr[1] + link = link +"?product=dlr&repoType="+ repoType +"&" + arr[1] } else { - link = link + "&product=dbr&repoType=" + repoType + link = link + "&product=dlr&repoType=" + repoType } } else { - link = link + "?product=dbr&repoType=" + repoType + link = link + "?product=dlr&repoType=" + repoType } } window.location.href = link From d61c7834d9c39e4b94c0e8039f18b73fb3ce0adf Mon Sep 17 00:00:00 2001 From: rachel-dynamsoft <113884070+rachel-dynamsoft@users.noreply.github.com> Date: Thu, 27 Jul 2023 15:55:14 +0800 Subject: [PATCH 4/6] Update index.md add quick links to get started guides --- introduction/index.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/introduction/index.md b/introduction/index.md index 24979da..57fc25d 100644 --- a/introduction/index.md +++ b/introduction/index.md @@ -9,7 +9,7 @@ noTitleIndex: true # Overview of Dynamsoft Label Recognizer -Dynamsoft Label Recognizer (DLR) is an SDK designed to recognize meaningful zonal text or symbols in an image (or a 'Label' in this context). Some common scenarios where a component like DLR can prove handy include price tags in supermarkets, inventory labels in warehouses, VIN codes on car windshields, driver licenses, ID cards, and more. +Dynamsoft Label Recognizer (DLR) is a data capture SDK designed to recognize meaningful zonal text or symbols in an image (or a 'Label' in this context). Some common scenarios where a component like DLR can prove handy include passport MRZ, ID cards, price tags in supermarkets, inventory labels in warehouses, VIN codes on car windshields, driver licenses, and more. DLR powers your software development through the following aspects: @@ -21,6 +21,11 @@ DLR powers your software development through the following aspects: With DLR, you can create customizable text detection and recognition software with enterprise-grade performance to meet your business needs. +Getting started with Dynamsoft Label Recognizer: +- [JavaScript](https://www.dynamsoft.com/label-recognition/docs/web/programming/javascript/) +- [Android](https://www.dynamsoft.com/label-recognition/docs/mobile/programming/android/) | [iOS](https://www.dynamsoft.com/label-recognition/docs/mobile/programming/objectivec-swift/) +- [Java](https://www.dynamsoft.com/label-recognition/docs/server/programming/java/) | [.NET](https://www.dynamsoft.com/label-recognition/docs/server/programming/dotnet/) | [C++](https://www.dynamsoft.com/label-recognition/docs/server/programming/cplusplus/) + ## Key Features ### Reference Region From 7a4325dafff37bd13da6fa844e0021cb74905137 Mon Sep 17 00:00:00 2001 From: Jenny Date: Tue, 12 Sep 2023 14:46:12 +0800 Subject: [PATCH 5/6] layout & header update --- .github/workflows/main.yml | 4 ++-- _includes/dlrNav.html | 20 ++++++++--------- _layouts/default-layout.html | 43 +++++++++++++++--------------------- _layouts/home-page.html | 6 ++--- _layouts/search-page.html | 6 ++--- 5 files changed, 35 insertions(+), 44 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a8b0917..6100c25 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,7 @@ jobs: git clone --depth 1 --branch preview https://github.com/dynamsoft-docs/Docs-Template-Repo.git Docs-Template-Repo-Preview cp -rfp ./label-recognition-docs/* ./DLRDocCore/ cp -rfp ./Docs-Template-Repo-Preview/* ./DLRDocCore/ - cd DLRDocCore && bundle exec jekyll build --incremental + cd DLRDocCore && bundle install && bundle exec jekyll build - name: Sync files - Main Site uses: SamKirkland/FTP-Deploy-Action@4.3.0 @@ -81,7 +81,7 @@ jobs: cp -rfp ./Docs-Template-Repo-Preview/* ./DLRDocCorePreview/ sed -i -e "1,3s/blob\/master$/blob\/preview/" \ -e "1,3s/blob\/main$/blob\/preview/" /home/ubuntu/DLRDocCorePreview/_config.yml - cd DLRDocCorePreview && bundle exec jekyll build + cd DLRDocCorePreview && bundle install && bundle exec jekyll build - name: Sync files uses: SamKirkland/FTP-Deploy-Action@4.3.0 diff --git a/_includes/dlrNav.html b/_includes/dlrNav.html index cddcd61..70fefe3 100644 --- a/_includes/dlrNav.html +++ b/_includes/dlrNav.html @@ -1,17 +1,15 @@
diff --git a/_layouts/default-layout.html b/_layouts/default-layout.html index e84e8c4..1473461 100644 --- a/_layouts/default-layout.html +++ b/_layouts/default-layout.html @@ -7,25 +7,14 @@ {%- assign noTitleIndex = "noTitleIndex" -%} {%- endif -%} -
- {%- include page_header.html -%} -
+ {% assign url = 'https://www.dynamsoft.com/shared/head/' %} + {% remote_include {{ url }} %} + {%- include dlrNav.html -%}
Table of contents
-
+
- -
+
{%- include main-page-head.html -%}
@@ -59,9 +48,20 @@
- +
+
- +
@@ -76,14 +76,7 @@ - - - - - diff --git a/_layouts/home-page.html b/_layouts/home-page.html index a3a268e..89aa900 100644 --- a/_layouts/home-page.html +++ b/_layouts/home-page.html @@ -17,9 +17,9 @@ -
- {%- include page_header.html -%} -
+ {% assign url = 'https://www.dynamsoft.com/shared/head/' %} + {% remote_include {{ url }} %} +
diff --git a/_layouts/search-page.html b/_layouts/search-page.html index a415808..e7b1ac5 100644 --- a/_layouts/search-page.html +++ b/_layouts/search-page.html @@ -108,9 +108,9 @@ } -
- {%- include page_header.html -%} -
+ {% assign url = 'https://www.dynamsoft.com/shared/head/' %} + {% remote_include {{ url }} %} +
From 2ee504c8c1dc0a11abbddf1fb22724bb3bc36f00 Mon Sep 17 00:00:00 2001 From: Jenny Date: Fri, 15 Sep 2023 13:31:45 +0800 Subject: [PATCH 6/6] Update _config.yml --- _config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_config.yml b/_config.yml index ccc7317..0ba2f4c 100644 --- a/_config.yml +++ b/_config.yml @@ -67,6 +67,11 @@ baseurl: "/label-recognition/docs/core" plugins: - jemoji - jekyll-sitemap + - jekyll-webp + - jekyll-relative-links + - jekyll-redirect-from + - jekyll-readme-index + - jekyll-seo-tag defaults: