-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): Change the theme from lotudocs to Material for MkDocs
- Loading branch information
Showing
91 changed files
with
1,478 additions
and
26,033 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"cache_date": "2024-06-04", "page_authors": {"docs/index.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/business_support.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/communicate.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/online_demo.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/quickstart.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/sponsor.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/index.md": {"last_commit_date": "2024-05-30", "authors": []}, "docs/blog/posts/faq.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/optim_tutorial.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/other_programing_lan.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/rec_dict_onnx.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/about_model/convert_model.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/about_model/custom_different_model.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/about_model/download_onnx.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/about_model/model_summary.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/about_model/support_language.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/inference_engine/inference_summary.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/inference_engine/which_inference.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/inference_engine/onnxruntime/infer_optim.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/inference_engine/onnxruntime/onnxruntime-gpu.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/inference_engine/openvino/infer-gpu.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/inference_engine/openvino/infer.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/related_projects/derivatives_projects.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/blog/posts/related_projects/related_projects.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/changelog/rapidocr.md": {"last_commit_date": "2024-06-03", "authors": []}, "docs/changelog/rapidocr_api.md": {"last_commit_date": "2024-06-01", "authors": []}, "docs/changelog/rapidocr_paddle.md": {"last_commit_date": "2024-06-01", "authors": []}, "docs/changelog/rapidocr_vino.md": {"last_commit_date": "2024-06-01", "authors": []}, "docs/changelog/rapidocr_web.md": {"last_commit_date": "2024-06-01", "authors": []}, "docs/install_usage/rapidocr_api.md": {"last_commit_date": "2024-06-02", "authors": []}, "docs/install_usage/rapidocr_paddle.md": {"last_commit_date": "2024-06-02", "authors": []}, "docs/install_usage/rapidocr/cli.md": {"last_commit_date": "2024-06-02", "authors": []}, "docs/install_usage/rapidocr/config_yaml.md": {"last_commit_date": "2024-06-02", "authors": []}, "docs/install_usage/rapidocr/install.md": {"last_commit_date": "2024-06-02", "authors": []}, "docs/install_usage/rapidocr/usage.md": {"last_commit_date": "2024-06-02", "authors": []}, "docs/install_usage/rapidocr_web/desktop_usage.md": {"last_commit_date": "2024-06-02", "authors": []}, "docs/install_usage/rapidocr_web/nuitka_package.md": {"last_commit_date": "2024-06-02", "authors": []}, "docs/install_usage/rapidocr_web/ocrweb_multi.md": {"last_commit_date": "2024-06-01", "authors": []}, "docs/install_usage/rapidocr_web/pyinstaller.md": {"last_commit_date": "2024-06-01", "authors": []}, "docs/install_usage/rapidocr_web/rapidocr_web.md": {"last_commit_date": "2024-06-01", "authors": []}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure Git Credentials | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
- uses: actions/cache@v4 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- run: pip install mkdocs-material jieba mkdocs-git-revision-date-localized-plugin mkdocs-git-committers-plugin-2 mkdocs-git-authors-plugin | ||
- run: mkdocs gh-deploy --force |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
#### 注意事项 | ||
- 文章底部的上一篇或者下一篇,是由`weight`决定的,需要全局排序。 | ||
- 每一个md文件的名字不可轻易更改,因为最终访问路径就是以名称为索引路径的。 | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.