├── .github ├── FUNDING.yml └── workflows │ ├── main.yml │ ├── publish-to-pypi.yml │ └── ruff.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── mokuro ├── __init__.py ├── __main__.py ├── _version.py ├── assets │ ├── icons │ │ ├── chevron-left-double-svgrepo-com.svg │ │ ├── chevron-left-svgrepo-com.svg │ │ ├── chevron-right-double-svgrepo-com.svg │ │ ├── chevron-right-svgrepo-com.svg │ │ ├── cross-svgrepo-com.svg │ │ ├── expand-svgrepo-com.svg │ │ ├── expand-width-svgrepo-com.svg │ │ ├── fullscreen-svgrepo-com.svg │ │ └── menu-hamburger-svgrepo-com.svg │ └── panzoom.min.js ├── cache.py ├── env.py ├── legacy │ ├── __init__.py │ ├── overlay_generator.py │ ├── script.js │ └── styles.css ├── manga_page_ocr.py ├── mokuro_generator.py ├── run.py ├── utils.py └── volume.py ├── notebooks └── mokuro_demo.ipynb ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── data ├── expected_results │ ├── test0 │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ ├── vol1.html │ │ └── vol1.mokuro │ ├── test0_disable_html │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ └── vol1.mokuro │ ├── test0_disable_ocr │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ ├── vol1.html │ │ └── vol1.mokuro │ ├── test0_disable_ocr_disable_html │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ └── vol1.mokuro │ ├── test1_webp_disable_html │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ └── vol1.mokuro │ ├── test1_webp_disable_ocr_disable_html │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ └── vol1.mokuro │ ├── test2_zip_disable_html │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ └── vol1.mokuro │ ├── test2_zip_unzip_disable_html │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ └── vol1.mokuro │ ├── test3_convert_legacy_ocr │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ ├── vol1.html │ │ └── vol1.mokuro │ ├── test3_convert_legacy_ocr_disable_html │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ └── vol1.mokuro │ ├── test3_convert_legacy_ocr_disable_ocr │ │ ├── _ocr │ │ │ └── vol1 │ │ │ │ ├── 000a.json │ │ │ │ ├── 000b.json │ │ │ │ ├── 001a.json │ │ │ │ ├── 001b.json │ │ │ │ ├── 002a.json │ │ │ │ └── 002b.json │ │ ├── vol1.html │ │ └── vol1.mokuro │ └── test3_convert_legacy_ocr_disable_ocr_disable_html │ │ ├── _ocr │ │ └── vol1 │ │ │ ├── 000a.json │ │ │ ├── 000b.json │ │ │ ├── 001a.json │ │ │ ├── 001b.json │ │ │ ├── 002a.json │ │ │ └── 002b.json │ │ └── vol1.mokuro └── input │ ├── test0 │ └── vol1 │ │ ├── 000a.jpg │ │ ├── 000b.jpg │ │ ├── 001a.jpg │ │ ├── 001b.jpg │ │ ├── 002a.jpg │ │ └── 002b.jpg │ ├── test1_webp │ └── vol1 │ │ ├── 000a.webp │ │ ├── 000b.webp │ │ ├── 001a.webp │ │ ├── 001b.webp │ │ ├── 002a.webp │ │ └── 002b.webp │ ├── test2_zip │ └── vol1.zip │ └── test3_convert_legacy_ocr │ ├── _ocr │ └── vol1 │ │ ├── 000a.json │ │ ├── 000b.json │ │ ├── 001a.json │ │ ├── 001b.json │ │ ├── 002a.json │ │ └── 002b.json │ └── vol1 │ ├── 000a.jpg │ ├── 000b.jpg │ ├── 001a.jpg │ ├── 001b.jpg │ ├── 002a.jpg │ └── 002b.jpg ├── regenerate_expected_results.py └── test_mokuro.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: khawhite 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/README.md -------------------------------------------------------------------------------- /mokuro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/__init__.py -------------------------------------------------------------------------------- /mokuro/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/__main__.py -------------------------------------------------------------------------------- /mokuro/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.2" 2 | -------------------------------------------------------------------------------- /mokuro/assets/icons/chevron-left-double-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/chevron-left-double-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/icons/chevron-left-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/chevron-left-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/icons/chevron-right-double-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/chevron-right-double-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/icons/chevron-right-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/chevron-right-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/icons/cross-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/cross-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/icons/expand-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/expand-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/icons/expand-width-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/expand-width-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/icons/fullscreen-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/fullscreen-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/icons/menu-hamburger-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/icons/menu-hamburger-svgrepo-com.svg -------------------------------------------------------------------------------- /mokuro/assets/panzoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/assets/panzoom.min.js -------------------------------------------------------------------------------- /mokuro/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/cache.py -------------------------------------------------------------------------------- /mokuro/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/env.py -------------------------------------------------------------------------------- /mokuro/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mokuro/legacy/overlay_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/legacy/overlay_generator.py -------------------------------------------------------------------------------- /mokuro/legacy/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/legacy/script.js -------------------------------------------------------------------------------- /mokuro/legacy/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/legacy/styles.css -------------------------------------------------------------------------------- /mokuro/manga_page_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/manga_page_ocr.py -------------------------------------------------------------------------------- /mokuro/mokuro_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/mokuro_generator.py -------------------------------------------------------------------------------- /mokuro/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/run.py -------------------------------------------------------------------------------- /mokuro/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/utils.py -------------------------------------------------------------------------------- /mokuro/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/mokuro/volume.py -------------------------------------------------------------------------------- /notebooks/mokuro_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/notebooks/mokuro_demo.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/expected_results/test0/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0/vol1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0/vol1.html -------------------------------------------------------------------------------- /tests/data/expected_results/test0/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_html/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_html/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_html/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_html/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_html/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_html/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_html/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_html/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_html/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_html/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_html/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_html/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_html/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_html/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr/vol1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr/vol1.html -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr_disable_html/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test0_disable_ocr_disable_html/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test0_disable_ocr_disable_html/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_html/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_html/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_html/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_ocr_disable_html/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test1_webp_disable_ocr_disable_html/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test1_webp_disable_ocr_disable_html/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_disable_html/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_disable_html/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_disable_html/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_unzip_disable_html/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test2_zip_unzip_disable_html/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test2_zip_unzip_disable_html/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr/vol1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr/vol1.html -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_html/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_html/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_html/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/vol1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/vol1.html -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/vol1.mokuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/expected_results/test3_convert_legacy_ocr_disable_ocr_disable_html/vol1.mokuro -------------------------------------------------------------------------------- /tests/data/input/test0/vol1/000a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test0/vol1/000a.jpg -------------------------------------------------------------------------------- /tests/data/input/test0/vol1/000b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test0/vol1/000b.jpg -------------------------------------------------------------------------------- /tests/data/input/test0/vol1/001a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test0/vol1/001a.jpg -------------------------------------------------------------------------------- /tests/data/input/test0/vol1/001b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test0/vol1/001b.jpg -------------------------------------------------------------------------------- /tests/data/input/test0/vol1/002a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test0/vol1/002a.jpg -------------------------------------------------------------------------------- /tests/data/input/test0/vol1/002b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test0/vol1/002b.jpg -------------------------------------------------------------------------------- /tests/data/input/test1_webp/vol1/000a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test1_webp/vol1/000a.webp -------------------------------------------------------------------------------- /tests/data/input/test1_webp/vol1/000b.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test1_webp/vol1/000b.webp -------------------------------------------------------------------------------- /tests/data/input/test1_webp/vol1/001a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test1_webp/vol1/001a.webp -------------------------------------------------------------------------------- /tests/data/input/test1_webp/vol1/001b.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test1_webp/vol1/001b.webp -------------------------------------------------------------------------------- /tests/data/input/test1_webp/vol1/002a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test1_webp/vol1/002a.webp -------------------------------------------------------------------------------- /tests/data/input/test1_webp/vol1/002b.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test1_webp/vol1/002b.webp -------------------------------------------------------------------------------- /tests/data/input/test2_zip/vol1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test2_zip/vol1.zip -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/000a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/000a.json -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/000b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/000b.json -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/001a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/001a.json -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/001b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/001b.json -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/002a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/002a.json -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/002b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/_ocr/vol1/002b.json -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/vol1/000a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/vol1/000a.jpg -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/vol1/000b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/vol1/000b.jpg -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/vol1/001a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/vol1/001a.jpg -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/vol1/001b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/vol1/001b.jpg -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/vol1/002a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/vol1/002a.jpg -------------------------------------------------------------------------------- /tests/data/input/test3_convert_legacy_ocr/vol1/002b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/data/input/test3_convert_legacy_ocr/vol1/002b.jpg -------------------------------------------------------------------------------- /tests/regenerate_expected_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/regenerate_expected_results.py -------------------------------------------------------------------------------- /tests/test_mokuro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kha-white/mokuro/HEAD/tests/test_mokuro.py --------------------------------------------------------------------------------