diff options
author | Lucas Werkmeister <mail@lucaswerkmeister.de> | 2017-11-18 22:06:08 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-11-19 18:16:35 +0200 |
commit | 5d9c72630aeef6f01a01f25853b42c7b316a24cd (patch) | |
tree | b7e19df535c559c8972703df8d2e7e9cac482384 /docs/markdown | |
parent | e51da1a34d3ac2ed23451e05c971720c20aaa064 (diff) | |
download | meson-5d9c72630aeef6f01a01f25853b42c7b316a24cd.zip meson-5d9c72630aeef6f01a01f25853b42c7b316a24cd.tar.gz meson-5d9c72630aeef6f01a01f25853b42c7b316a24cd.tar.bz2 |
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.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Syntax.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index 88b9bbb..84403f4 100644 --- a/docs/markdown/Syntax.md +++ b/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 |