Skip to content
Snippets Groups Projects
Commit 6f9283d1 authored by Lars Wächter's avatar Lars Wächter
Browse files

Fix cleaning regex

parent 897cfd03
No related merge requests found
......@@ -23,7 +23,7 @@ export class CreateCommentKeywords {
const regexEmoji = new RegExp('\uD918\uDD28|\ufe0f|\u200D|\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff]', 'g');
const regexKatex = new RegExp('\\$[^$\\n ]+\\$|\\$\\$[^$\\n ]+\\$\\$','g');
const regexMarkdown = new RegExp('(?:__|[*#])|\\[(.+?)]\\((.+?)\\)', 'g');
const regexBlank = new RegExp('[\\s]{2,}', 'g');
const regexBlank = new RegExp('[\\s]{2,}', 'gu');
text = text.replace(regexKatex,'');
text = text.replace(regexEmoji,'');
text = text.replace(regexMarkdown,'');
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment