Function that escapes string to be usable inside a markdown document
npm install severinkaderli/markdown-escape
const escape = require("markdown-escape");
escape("### Test"); // -> \\#\\#\\# Test
Function that escapes string to be usable inside a markdown document
JavaScriptMIT