Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 4.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 5.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 96 KiB |
@@ -0,0 +1,23 @@
|
||||
package eu.kanade.tachiyomi.extension.en.readallmanga
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.readallcomics.ReadAllComics
|
||||
import eu.kanade.tachiyomi.source.model.SManga
|
||||
import org.jsoup.nodes.Document
|
||||
|
||||
class ReadAllManga : ReadAllComics("ReadAllManga", "https://readallmanga.com", "en") {
|
||||
|
||||
override fun searchType() = "manga"
|
||||
|
||||
override fun popularMangaTitleSelector() = "div > center"
|
||||
|
||||
override fun mangaDetailsParse(document: Document): SManga {
|
||||
return super.mangaDetailsParse(document).apply {
|
||||
genre = document.select(mangaDetailsGenreSelector()).text()
|
||||
.split("–").joinToString { it.trim() }
|
||||
}
|
||||
}
|
||||
|
||||
override fun mangaDetailsDescriptionSelector() = ".b > span"
|
||||
override fun mangaDetailsGenreSelector() = ".b > p > strong:nth-child(8)"
|
||||
override fun mangaDetailsAuthorSelector() = ".b > p > strong:nth-child(5)"
|
||||
}
|
||||
Reference in New Issue
Block a user