We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bf19a53 + 01c186e commit 079da88Copy full SHA for 079da88
src/lib/helpers/http.js
@@ -95,7 +95,7 @@ export function replaceNewLine(text) {
95
* @returns {string}
96
*/
97
export function replaceMarkdown(text) {
98
- let res = text.replace(/#([\s]+)/g, '\\# ');
+ let res = text.replace(/#([\s]+)/g, '\\# ').replace(/[-|=]{3,}/g, '');
99
100
let regex1 = new RegExp('\\*(.*)\\*', 'g');
101
let regex2 = new RegExp('\\*([\\*]+)\\*', 'g');
0 commit comments