jopejoe1 201463e1f5
Added some sources to madara (#10595)
* Update MadaraGenerator.kt

* Include fixed version of #10443 and #10167

Co-authored-by: Shota <75117560+Shota5749@users.noreply.github.com>
Co-authored-by: Carlos Hernandez <20384738+wolfghost9898@users.noreply.github.com>

* Add icons and overrides

* Add more icons and overrides

* Update Madara.kt

Co-authored-by: Shota <75117560+Shota5749@users.noreply.github.com>
Co-authored-by: Carlos Hernandez <20384738+wolfghost9898@users.noreply.github.com>
2022-01-29 06:29:15 -05:00

12 lines
399 B
Kotlin

package eu.kanade.tachiyomi.extension.en.kiara
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.source.model.Page
import org.jsoup.nodes.Document
class Kiara : Madara("Kiara", "https://kiara.cool", "en") {
override fun pageListParse(document: Document): List<Page> {
return super.pageListParse(document).filterIndexed { index, _ -> index % 2 == 0 }
}
}