TeleMarts / api /src /utils /StringParser.ts
Mythus's picture
Upload 225 files
67edfce
raw
history blame contribute delete
160 Bytes
export const markdownSafe = (str: string): string => str
.replaceAll('_', '\\_')
.replaceAll('*', '\\*')
.replaceAll('[', '\\[')
.replaceAll('`', '\\`')