3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-19 16:05:01 +00:00

Include stripMarkdown.ts

Was originally supposed to be part of
commit cb5723db7c
This commit is contained in:
Dragory 2020-09-15 01:35:59 +03:00
parent 2c765c2250
commit fd6a9cae84

View file

@ -0,0 +1,3 @@
export function stripMarkdown(str) {
return str.replace(/[*_|~`]/g, "");
}