From 577cdcadb35cc4eee73626262984275fd81e8dda Mon Sep 17 00:00:00 2001 From: Cristian Ciupitu Date: Mon, 23 Mar 2015 22:45:23 +0200 Subject: [PATCH] Doc: use literal code blocks for YAML examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this, the straight double quotes (") are displayed as curved quotes (“ and ”). --- docsite/rst/YAMLSyntax.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/YAMLSyntax.rst b/docsite/rst/YAMLSyntax.rst index 424db0ad466..d3eb8435231 100644 --- a/docsite/rst/YAMLSyntax.rst +++ b/docsite/rst/YAMLSyntax.rst @@ -85,11 +85,11 @@ That's all you really need to know about YAML to start writing Gotchas ------- -While YAML is generally friendly, the following is going to result in a YAML syntax error: +While YAML is generally friendly, the following is going to result in a YAML syntax error:: foo: somebody said I should put a colon here: so I did -You will want to quote any hash values using colons, like so: +You will want to quote any hash values using colons, like so:: foo: "somebody said I should put a colon here: so I did"