diff options
Diffstat (limited to '')
-rw-r--r-- | test/yaml/quoted-string/input.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/yaml/quoted-string/input.yaml b/test/yaml/quoted-string/input.yaml new file mode 100644 index 0000000..d2b50e5 --- /dev/null +++ b/test/yaml/quoted-string/input.yaml @@ -0,0 +1,22 @@ +--- +"I am quoted: ~ " : "Here is another quote." +list with quoted string values : + - "1 2 3" + - "null" + - "true" + - "false" + - "#hashtag" + - "\"quoted inside\"" + - "'single quote inside'" + - "Japan's finest beer" +'single quoted string values' : + - '8.8.8.8' + - '''single quote inside''' + - 'prefix ''quoted'' suffix' + - '"double quote"' + - 'before "quote" after' + - 'http://www.google.com' + - '''''''' # equivalent of "'''" + - ' '' '' '' ' # equivalent of " ' ' ' " + - '#hashtag' + |