We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d15fb03 commit f68263eCopy full SHA for f68263e
index.js
@@ -180,6 +180,7 @@ const Markdown = {
180
},
181
182
parseRaw: async function (raw) {
183
+ raw = raw.replace(/^(?<symbol>-|\+)/gm, (m, symbol) => `\\${symbol}`);
184
raw = (raw && parser) ? parser.render(raw) : raw;
185
return Markdown.afterParse(raw);
186
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "nodebb-plugin-ws-markdown",
3
- "version": "8.15.3",
+ "version": "8.15.4",
4
"description": "A Markdown parser for NodeBB",
5
"main": "index.js",
6
"repository": {
0 commit comments