markdown-escapes
Version:
Legacy list of escapable characters in markdown
40 lines (39 loc) • 342 B
JavaScript
/**
* Legacy list of escapable characters in markdown.
*
* @type {string[]}
*/
export const markdownEscapes = [
'!',
'"',
'#',
'$',
'%',
'&',
"'",
'(',
')',
'*',
'+',
',',
'-',
'.',
'/',
':',
';',
'<',
'=',
'>',
'?',
'@',
'[',
'\\',
']',
'^',
'_',
'`',
'{',
'|',
'}',
'~'
]