Skip to content

Commit

Permalink
feat: More novel extractors
Browse files Browse the repository at this point in the history
  • Loading branch information
Eltik committed Apr 29, 2024
1 parent 1be9edd commit 7f23755
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions anify-backend/src/mappings/impl/manga/novelupdates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,12 @@ export default class NovelUpdates extends MangaProvider {
const $ = load(await (await this.request(url)).text());
return $("div.reader-content").html() ?? "";
}
} else if (url.includes("plebianfinetranslation")) {
const $ = load(await (await this.request(url)).text());
return $("div.entry-content").html() ?? "";
} else if (url.includes("zetrotranslation")) {
const $ = load(await (await this.request(url)).text());
return $("div.entry-content_wrap").html() ?? "";
} else {
const article = await extract(
url,
Expand Down

0 comments on commit 7f23755

Please sign in to comment.