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.
This commit is contained in:
parent
e51da1a34d
commit
5d9c72630a
|
@ -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…
Reference in New Issue