go-toml/parse/testfiles/valid/BurntSushi/string-escapes.json

47 lines
1.2 KiB
JSON

{
"backspace" : {
"type" : "string",
"value" : "This string has a \b backspace character."
},
"notunicode1" : {
"value" : "This string does not have a unicode \\u escape.",
"type" : "string"
},
"carriage" : {
"type" : "string",
"value" : "This string has a \r carriage return character."
},
"tab" : {
"type" : "string",
"value" : "This string has a \t tab character."
},
"notunicode3" : {
"type" : "string",
"value" : "This string does not have a unicode \\u0075 escape."
},
"notunicode2" : {
"value" : "This string does not have a unicode \\u escape.",
"type" : "string"
},
"quote" : {
"value" : "This string has a \" quote character.",
"type" : "string"
},
"notunicode4" : {
"value" : "This string does not have a unicode \\u escape.",
"type" : "string"
},
"formfeed" : {
"value" : "This string has a \f form feed character.",
"type" : "string"
},
"newline" : {
"type" : "string",
"value" : "This string has a \n new line character."
},
"backslash" : {
"type" : "string",
"value" : "This string has a \\ backslash character."
}
}