From 5d9c72630aeef6f01a01f25853b42c7b316a24cd Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Sat, 18 Nov 2017 22:06:08 +0100 Subject: 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. --- docs/markdown/Syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 -- cgit v1.1