diff --git a/.github/summary.yaml b/.github/summary.yaml index 851932bf..e507b38c 100644 --- a/.github/summary.yaml +++ b/.github/summary.yaml @@ -1 +1 @@ -total: 1205 \ No newline at end of file +total: 1206 diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/tr/Ragnarscans.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/tr/Ragnarscans.kt new file mode 100644 index 00000000..e7cce5cb --- /dev/null +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/tr/Ragnarscans.kt @@ -0,0 +1,12 @@ +package org.koitharu.kotatsu.parsers.site.madara.tr + +import org.koitharu.kotatsu.parsers.MangaLoaderContext +import org.koitharu.kotatsu.parsers.MangaSourceParser +import org.koitharu.kotatsu.parsers.model.MangaParserSource +import org.koitharu.kotatsu.parsers.site.madara.MadaraParser + +@MangaSourceParser("RAGNARSCANS", "Ragnarscans", "tr") +internal class Ragnarscans(context: MangaLoaderContext) : + MadaraParser(context, MangaParserSource.RAGNARSCANS, "ragnarscans.com", pageSize = 10) { + override val datePattern = "d MMMM yyyy" +}