...

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

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

     1{
     2  "backslash": {
     3    "type": "string",
     4    "value": "This string has a \\ backslash character."
     5  },
     6  "backspace": {
     7    "type": "string",
     8    "value": "This string has a \u0008 backspace character."
     9  },
    10  "carriage": {
    11    "type": "string",
    12    "value": "This string has a \r carriage return character."
    13  },
    14  "delete": {
    15    "type": "string",
    16    "value": "This string has a  delete control code."
    17  },
    18  "formfeed": {
    19    "type": "string",
    20    "value": "This string has a \u000c form feed character."
    21  },
    22  "newline": {
    23    "type": "string",
    24    "value": "This string has a \n new line character."
    25  },
    26  "notunicode1": {
    27    "type": "string",
    28    "value": "This string does not have a unicode \\u escape."
    29  },
    30  "notunicode2": {
    31    "type": "string",
    32    "value": "This string does not have a unicode \\u escape."
    33  },
    34  "notunicode3": {
    35    "type": "string",
    36    "value": "This string does not have a unicode \\u0075 escape."
    37  },
    38  "notunicode4": {
    39    "type": "string",
    40    "value": "This string does not have a unicode \\u escape."
    41  },
    42  "quote": {
    43    "type": "string",
    44    "value": "This string has a \" quote character."
    45  },
    46  "tab": {
    47    "type": "string",
    48    "value": "This string has a \t tab character."
    49  },
    50  "unitseparator": {
    51    "type": "string",
    52    "value": "This string has a \u001f unit separator control code."
    53  }
    54}

View as plain text