flyleaf-core 0.2.1

The document model behind Tommy Flyleaf: TOML edited as a tree, with comments, order and formatting kept
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
backspace     = "|\b."
tab           = "|\t."
newline       = "|\n."
formfeed      = "|\f."
carriage      = "|\r."
quote         = "|\"."
backslash     = "|\\."
delete        = "|\u007F."
unitseparator = "|\u001F."

# \u is escaped, so should NOT be interperted as a \u escape.
notunicode1   = "|\\u."
notunicode2   = "|\u005Cu."
notunicode3   = "|\\u0075."
notunicode4   = "|\\\u0075."