This commit is contained in:
dragonfire535
2017-10-07 12:34:58 -04:00
parent 652328ca83
commit d9ae0ff55d
2 changed files with 7 additions and 6 deletions
+4 -1
View File
@@ -67,7 +67,10 @@ class Util {
.replace(/—/g, '—')
.replace(/©/g, '©')
.replace(/™/g, '™')
.replace(/®/g, '®');
.replace(/®/g, '®')
.replace(/(<\/?strong>|<\/?b>)/g, '**')
.replace(/<br>/g, '\n\n')
.replace(/<\/?i>/g, '*');
}
}