small fix and sources
parent
75a60ff738
commit
a1279b64a2
@ -0,0 +1,13 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.madara.th
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser
|
||||||
|
|
||||||
|
@MangaSourceParser("MANGALC", "Manga Lc", "th")
|
||||||
|
internal class MangaLc(context: MangaLoaderContext) :
|
||||||
|
MadaraParser(context, MangaSource.MANGALC, "manga-lc.net", 24) {
|
||||||
|
override val datePattern: String = "d MMMM yyyy"
|
||||||
|
override val selectPage = "img"
|
||||||
|
}
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.mangareader.ar
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser
|
||||||
|
|
||||||
|
@MangaSourceParser("ELITON", "Eliton", "ar")
|
||||||
|
internal class Eliton(context: MangaLoaderContext) :
|
||||||
|
MangaReaderParser(context, MangaSource.ELITON, "eliton.lol", pageSize = 20, searchPageSize = 10)
|
||||||
Loading…
Reference in New Issue