Skip to content

Commit 91139b8

Browse files
committed
minor #6371 Fix escaping of backtick inside double back-quotes (guilliamxavier)
This PR was merged into the 2.3 branch. Discussion ---------- Fix escaping of backtick inside double back-quotes | Q | A | ------------- | --- | Doc fix? | no | New docs? | no | Applies to | all | Fixed tickets | This PR removes the backslash before the backtick inside a double-back-quoted inline code block, because there it is interpreted literally (and displayed too) instead of as an escaping character. Commits ------- 1c297f9 Fix escaping of backtick inside double back-quotes
2 parents fe11cd8 + 1c297f9 commit 91139b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/yaml/yaml_format.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ can use double quotes, for these characters it is more convenient to use single
5050
quotes, which avoids having to escape any backslash ``\``:
5151

5252
* ``:``, ``{``, ``}``, ``[``, ``]``, ``,``, ``&``, ``*``, ``#``, ``?``, ``|``,
53-
``-``, ``<``, ``>``, ``=``, ``!``, ``%``, ``@``, ``\```
53+
``-``, ``<``, ``>``, ``=``, ``!``, ``%``, ``@``, `````
5454

5555
The double-quoted style provides a way to express arbitrary strings, by
5656
using ``\`` to escape characters and sequences. For instance, it is very useful

0 commit comments

Comments
 (0)