
* updated souirces * updated sources * fix wpcomics generator fix comics generator with the correct site and override code
12 lines
474 B
Kotlin
12 lines
474 B
Kotlin
package eu.kanade.tachiyomi.extension.en.animangaes
|
|
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
import eu.kanade.tachiyomi.source.model.SChapter
|
|
import okhttp3.Response
|
|
|
|
class AniMangaEs : Madara("AniMangaEs", "https://animangaes.com", "en") {
|
|
override val pageListParseSelector = "div.text-left noscript"
|
|
override val chapterUrlSuffix = ""
|
|
override fun chapterListParse(response: Response): List<SChapter> = super.chapterListParse(response).reversed()
|
|
}
|