feat: add some stuff

This commit is contained in:
2024-03-28 18:30:52 +01:00
parent d169df01f1
commit fa5d08e549
196 changed files with 2964 additions and 390 deletions

View File

@@ -0,0 +1,3 @@
export default function markdownToText(markdown: string): string {
return markdown.replace(/#|`|\*|_|~/g, '');
}