Files
developer-roadmap/scripts/lib/html.ts
T
Arik Chakma 274082fd77 feat: clean roadmap content and sync scripts (#10181)
* refactor: clean to roadmap content

* refactor: move shared helpers into scripts/lib
2026-07-28 05:45:17 +06:00

8 lines
165 B
TypeScript

import TurndownService from 'turndown';
const turndown = new TurndownService();
export function htmlToMarkdown(html: string) {
return turndown.turndown(html);
}