Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
export const convertHTMLtoMarkdown = async (params) => {
const turndown = await import("npm:turndown");
const plugin = await import("npm:turndown-plugin-gfm");
const turndownService = new turndown.default({
emDelimiter: "*",
codeBlockStyle: "fenced",
});
turndownService.use(plugin.gfm);
return turndownService.turndown(params.data);
};
feb-converthtmltomarkdown.web.val.run
October 23, 2023