mirror of
https://github.com/nx-bat/discordbot-ng.git
synced 2026-09-22 10:29:10 -04:00
5 lines
182 B
TypeScript
5 lines
182 B
TypeScript
import { formatMarkdown, parseDTextToAST } from '@clynamic/dmark';
|
|
|
|
export function dtextToMarkdown(dtext: string): string {
|
|
return formatMarkdown(parseDTextToAST(dtext)).output;
|
|
} |