Steel / api /src /utils /scrape /readability.ts
supernovagateway's picture
Upload folder using huggingface_hub
fb38ec5 verified
import { Defuddle } from "defuddle/node";
export const getDefuddleContent = async (htmlString: string) => {
const defuddle = await Defuddle(htmlString, undefined, {
debug: false,
markdown: false,
});
return defuddle;
};