diff options
| author | Fuwn <[email protected]> | 2024-03-18 07:40:15 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-18 07:40:15 -0700 |
| commit | 7ece2eade39ab16efd4c3b8c59d6cd5c6cd6e672 (patch) | |
| tree | 5224db8ad474d635520fae18493c1b90a9f148d8 /src/lib/Tools | |
| parent | feat(hayai): add short description (diff) | |
| download | due.moe-7ece2eade39ab16efd4c3b8c59d6cd5c6cd6e672.tar.xz due.moe-7ece2eade39ab16efd4c3b8c59d6cd5c6cd6e672.zip | |
feat(hayai): add usage information
Diffstat (limited to 'src/lib/Tools')
| -rw-r--r-- | src/lib/Tools/Hayai.svelte | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/Tools/Hayai.svelte b/src/lib/Tools/Hayai.svelte index 02fc0bea..f1eddb1c 100644 --- a/src/lib/Tools/Hayai.svelte +++ b/src/lib/Tools/Hayai.svelte @@ -80,7 +80,7 @@ </script> <div class="card"> - {@html applyBionicReadingToString('Upload an EPUB, receive a "bionic" EPUB.')} + {@html applyBionicReadingToString('Upload an EPUB; receive a "bionic" EPUB.')} <br /> @@ -92,5 +92,11 @@ <p /> + {@html applyBionicReadingToString( + `After selecting an EPUB file, 早い will apply a bionic reading filter over any and all words, and return the newly created "bionic" EPUB file.` + )} + + <p /> + <input type="file" id="epub-file" accept=".epub" on:change={handleFileUpload} /> </div> |