Fix literal backslash syntax

In CommonMark, there are no backslash escapes in code spans, so only two backslashes in the source document are necessary to produce two backslashes in the output document.
pull/2651/merge
Lucas Werkmeister 7 years ago committed by Jussi Pakkanen
parent e51da1a34d
commit 5d9c72630a
  1. 2
      docs/markdown/Syntax.md

@ -84,7 +84,7 @@ single quote do it like this:
single quote = 'contains a \' character'
```
Similarly `\n` gets converted to a newline and `\\\\` to a single
Similarly `\n` gets converted to a newline and `\\` to a single
backslash.
#### String concatenation

Loading…
Cancel
Save