List of escapable characters in markdown.
npm:
npm install markdown-escapesvar escapes = require('markdown-escapes');
// Access by property:
escapes.commonmark; //=> ['\\', '`', ..., '@', '^']
// Access by options object:
escapes({gfm: true}); //=> ['\\', '`', ..., '~', '|']Get escapes. Supports options.commonmark and options.gfm, which
when true returns the extra escape characters supported by those
flavours.
Array.<string>.
List of default escapable characters.
List of escapable characters in GFM (which includes all defaults).
List of escapable characters in CommonMark (which includes all gfms).