...

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

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

     1backspace = "This string has a \b backspace character."
     2tab = "This string has a \t tab character."
     3newline = "This string has a \n new line character."
     4formfeed = "This string has a \f form feed character."
     5carriage = "This string has a \r carriage return character."
     6quote = "This string has a \" quote character."
     7backslash = "This string has a \\ backslash character."
     8notunicode1 = "This string does not have a unicode \\u escape."
     9notunicode2 = "This string does not have a unicode \u005Cu escape."
    10notunicode3 = "This string does not have a unicode \\u0075 escape."
    11notunicode4 = "This string does not have a unicode \\\u0075 escape."
    12delete = "This string has a \u007F delete control code."
    13unitseparator = "This string has a \u001F unit separator control code."

View as plain text