Update single_url.ts

This commit is contained in:
Nicolas 2024-04-17 18:27:08 -07:00
parent 36abe0f7f9
commit ca2bf9cc12
1 changed files with 0 additions and 1 deletions

View File

@ -89,7 +89,6 @@ export async function scrapSingleUrl(
soup("script, style, iframe, noscript, meta, head").remove();
if (pageOptions.onlyMainContent) {
// remove any other tags that are not in the main content
soup("").remove();
excludeNonMainTags.forEach((tag) => {
soup(tag).remove();
});