From 1c297f9f073b06e4fbf19ac52b8cb21c4034abe1 Mon Sep 17 00:00:00 2001 From: Guilliam Xavier Date: Mon, 14 Mar 2016 22:49:41 +0100 Subject: [PATCH] Fix escaping of backtick inside double back-quotes --- components/yaml/yaml_format.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/yaml/yaml_format.rst b/components/yaml/yaml_format.rst index 841e93ffb1a..0a776be2a70 100644 --- a/components/yaml/yaml_format.rst +++ b/components/yaml/yaml_format.rst @@ -50,7 +50,7 @@ can use double quotes, for these characters it is more convenient to use single quotes, which avoids having to escape any backslash ``\``: * ``:``, ``{``, ``}``, ``[``, ``]``, ``,``, ``&``, ``*``, ``#``, ``?``, ``|``, - ``-``, ``<``, ``>``, ``=``, ``!``, ``%``, ``@``, ``\``` + ``-``, ``<``, ``>``, ``=``, ``!``, ``%``, ``@``, ````` The double-quoted style provides a way to express arbitrary strings, by using ``\`` to escape characters and sequences. For instance, it is very useful