Skip to main content
1 of 7
suhailvs
  • 1.2k
  • 9
  • 12

Markdown provides backslash escapes for the following characters:

\ backslash ` backtick * asterisk _ underscore {} curly braces [] square brackets () parentheses # hash mark + plus sign - minus sign (hyphen) . dot ! exclamation mark 

for example, this:

## \\ \` \* \_ \{ \} \[ \] \( \) \# \+ \- \. \! 

returns:

\ ` * _ { } [ ] ( ) # + - . !

suhailvs
  • 1.2k
  • 9
  • 12