@@ -295,7 +295,7 @@ baz: 2
295295exports[`colon-in-double-quoted-string.yml 1`] = `
296296"foo: bar\\": baz"
297297~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
298- " foo: bar\\ ": baz"
298+ ' foo: bar": baz'
299299
300300`;
301301
@@ -719,7 +719,7 @@ exports[`non-specific-tags-on-scalars.yml 1`] = `
719719~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
720720- plain
721721- "double quoted"
722- - ' single quoted'
722+ - " single quoted"
723723- >
724724 block
725725- plain again
@@ -1114,7 +1114,7 @@ control: "\\b1998\\t1999\\t2000\\n"
11141114hex esc: "\\ x0d\\ x0a is \\ r\\ n"
11151115
11161116single: '"Howdy!" he cried.'
1117- quoted: ' # Not a '' comment''.'
1117+ quoted: " # Not a 'comment'."
11181118tie-fighter: '|\\ -*-/|'
11191119
11201120` ;
@@ -1412,7 +1412,7 @@ exports[`spec-example-5-8-quoted-scalar-indicators.yml 1`] = `
14121412single: 'text'
14131413double: "text"
14141414~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1415- single: ' text'
1415+ single: " text"
14161416double: "text"
14171417
14181418` ;
@@ -1883,7 +1883,7 @@ exports[`spec-example-7-8-single-quoted-implicit-keys.yml 1`] = `
18831883 'implicit flow key' : value,
18841884 ]
18851885~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1886- ' implicit block key' : [' implicit flow key' : value]
1886+ " implicit block key" : [" implicit flow key" : value]
18871887
18881888` ;
18891889
@@ -1893,10 +1893,10 @@ exports[`spec-example-7-9-single-quoted-lines.yml 1`] = `
18931893 2nd non-empty
18941894 3rd non-empty '
18951895~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1896- ' 1st non-empty
1896+ " 1st non-empty
18971897
18981898 2nd non-empty
1899- 3rd non-empty '
1899+ 3rd non-empty "
19001900
19011901` ;
19021902
@@ -1966,8 +1966,8 @@ single: pair,
19661966]
19671967~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19681968["double
1969- quoted", ' single
1970- quoted' , plain text, [nested], single: pair]
1969+ quoted", " single
1970+ quoted" , plain text, [nested], single: pair]
19711971
19721972` ;
19731973
@@ -2054,7 +2054,7 @@ exports[`spec-example-7-23-flow-content.yml 1`] = `
20542054- [a , b ]
20552055- { a: b }
20562056- " a"
2057- - ' b '
2057+ - " b "
20582058- c
20592059
20602060` ;
@@ -2067,7 +2067,7 @@ exports[`spec-example-7-24-flow-nodes.yml 1`] = `
20672067- !! str
20682068~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20692069- !! str " a"
2070- - ' b '
2070+ - " b "
20712071- & anchor " c"
20722072- * anchor
20732073- !! str
@@ -2726,7 +2726,7 @@ exports[`whitespace-after-scalars-in-flow.yml 1`] = `
27262726- [ ]
27272727~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27282728- [a , b , c ]
2729- - { " a" : b , c: ' d ' , e: " f" }
2729+ - { " a" : b , c: " d " , e: " f" }
27302730- []
27312731
27322732` ;
@@ -2747,15 +2747,15 @@ top6:
27472747~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27482748" top1" :
27492749 " key1" : & alias1 scalar1
2750- ' top2' :
2751- ' key2' : & alias2 scalar2
2750+ " top2" :
2751+ " key2" : & alias2 scalar2
27522752top3 : & node3
27532753 * alias1 : scalar3
27542754top4 :
27552755 * alias2 : scalar4
27562756top5 : scalar5
27572757top6 :
2758- & anchor6 ' key6' : scalar6
2758+ & anchor6 " key6" : scalar6
27592759
27602760` ;
27612761
0 commit comments