---
- name: Spec Example 5.8. Quoted Scalar Indicators
from: http://www.yaml.org/spec/1.2/spec.html#id2773890
tags: spec scalar
yaml: |
single: 'text'
double: "text"
tree: |
+STR
+DOC
+MAP
=VAL :single
=VAL 'text
=VAL :double
=VAL "text
-MAP
-DOC
-STR
json: |
{
"single": "text",
"double": "text"
}