Link:.*
".toRegex(RegexOption.IGNORE_CASE).replace(mangaDesc, "") - - // Convert any breaks", "\n\n", true)
-
- // Replace any other tags with nothing
- description = "<.*?>".toRegex().replace(description, "")
-
- return description.trim()
- }
-
- private fun mapStatus(status: String) =
- when (status) {
- "ongoing", "hiatus" -> SManga.ONGOING
- "completed", "cancelled" -> SManga.COMPLETED
- else -> SManga.UNKNOWN
- }
-
- override fun chapterListRequest(manga: SManga): Request {
- val url = "${manga.url.replace("/manga/", "/mangas/")}/get-manga-chapters-12345?page=1&perPage=9999&sort=-1"
- return GET(url, headers)
- }
-
- override fun chapterListParse(response: Response): List