af05f537d8
TOML allows (unlike many other formats) up to 2 additonal quotes that are part of the string: basic = """2 extra quotes -->""""" literal = '''here too '''' Changed in TOML v1.0.0-rc.1 See also #392
14 lines
235 B
JSON
14 lines
235 B
JSON
{
|
|
"str1": {
|
|
"type": "string",
|
|
"value": "\"This,\" she said, \"is just a pointless statement.\""
|
|
},
|
|
"str2": {
|
|
"type": "string",
|
|
"value": "foo''bar''"
|
|
},
|
|
"str3": {
|
|
"type": "string",
|
|
"value": "\"\""
|
|
}
|
|
} |