...

Text file src/github.com/BurntSushi/toml/internal/toml-test/tests/valid/string/multiline-quotes.json

Documentation: github.com/BurntSushi/toml/internal/toml-test/tests/valid/string

     1{
     2  "escaped": {
     3    "type": "string",
     4    "value": "lol\"\"\""
     5  },
     6  "lit_one": {
     7    "type": "string",
     8    "value": "'one quote'"
     9  },
    10  "lit_one_space": {
    11    "type": "string",
    12    "value": " 'one quote' "
    13  },
    14  "lit_two": {
    15    "type": "string",
    16    "value": "''two quotes''"
    17  },
    18  "lit_two_space": {
    19    "type": "string",
    20    "value": " ''two quotes'' "
    21  },
    22  "mismatch1": {
    23    "type": "string",
    24    "value": "aaa'''bbb"
    25  },
    26  "mismatch2": {
    27    "type": "string",
    28    "value": "aaa\"\"\"bbb"
    29  },
    30  "one": {
    31    "type": "string",
    32    "value": "\"one quote\""
    33  },
    34  "one_space": {
    35    "type": "string",
    36    "value": " \"one quote\" "
    37  },
    38  "two": {
    39    "type": "string",
    40    "value": "\"\"two quotes\"\""
    41  },
    42  "two_space": {
    43    "type": "string",
    44    "value": " \"\"two quotes\"\" "
    45  }
    46}

View as plain text