Expand Archive Instructions (#107)

* Expand Archive Instructions

Tested how archives are read by Tachi. Expanded the section to explain how to use an archive file.

* Update folder structure

* Remove div

* Add subsections

* Fix example

* Try removing div

* Fix spelling, grammer, formating.
This commit is contained in:
happywillow0 2020-01-09 23:35:05 -05:00 committed by arkon
parent f3f186cef0
commit 6f563be08a

View File

@ -19,6 +19,12 @@ Supported chapter formats are directories with pictures inside, `ZIP`/`CBZ`, `RA
You can also place your chapters or manga in both storages and Tachiyomi will merge them.
You can then access the manga in `Catalogues > Local manga`.
## Folder Structure
Tachiyomi requires a specific folder structure for local manga to be correctly processed. Local manga will be read from the `Tachiyomi/local` folder. Each manga must have a `Manga` folder and a `Chapter` folder. Images will then go into the chapter folder. See below for more information on archive files. You can refer to the following example:
::: tip EXAMPLE
<div class="side-by-side">
<ul class="file-tree">
@ -76,6 +82,42 @@ You can also place your chapters or manga in both storages and Tachiyomi will me
Tachiyomi will see four chapters in a single manga.
The path to the folder (or archive) with images must contain both the manga title and the chapter name (as seen above).
The path to the folder with images must contain both the manga title and the chapter name (as seen above).
## Archive Files
Archive files such as `ZIP`/`CBZ` are supported but the folder structure inside is not. Any folders inside the archive file are ignored. You must place the archive inside the `Manga` folder where the name will become the `Chapter` title. All images inside the archive regardless of folder structure will become pages for that chapter.
::: tip ZIP EXAMPLE
<ul class="file-tree">
<li>
/sdcard/Tachiyomi/local
<ul>
<li>
My manga
<ul>
<li>
ch1.zip
<ul>
<li class="file">img files</li>
</ul>
</li>
<li>
ch2.zip
<ul>
<li>
ch2
<ul>
<li class="file">img files</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>&hellip;</li>
</ul>
</li>
</ul>
:::
You can then access the manga in `Catalogues > Local manga`.