* N-Z * MZuki-N * kbatch-mzuki * remove madara * remove wildcard * nsfw * pkg name already got it from class name * forgot className * this too * fix arangScans chapter and timestamp * add mangaEffect * add mangaGreat * mangazuki.club multiLang * forgot this line :v
		
			
				
	
	
		
			12 lines
		
	
	
		
			491 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			491 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
package eu.kanade.tachiyomi.extension.th.mangaonlineco
 | 
						|
 | 
						|
import eu.kanade.tachiyomi.multisrc.madara.Madara
 | 
						|
import eu.kanade.tachiyomi.source.model.SChapter
 | 
						|
import okhttp3.Response
 | 
						|
import java.text.SimpleDateFormat
 | 
						|
import java.util.Locale
 | 
						|
 | 
						|
class MangaOnlineCo : Madara("Manga-Online.co", "https://www.manga-online.co", "th", SimpleDateFormat("MMM dd, yyyy", Locale("th"))) {
 | 
						|
    override fun chapterListParse(response: Response): List<SChapter> = super.chapterListParse(response).reversed()
 | 
						|
}
 |