We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b737f76 + fa7f89c commit 96c3864Copy full SHA for 96c3864
1 file changed
docs/environment.rst
@@ -42,9 +42,9 @@ Upper and lower case may both be used in the key name.
42
CIRCUITPY_SDCARD_USB = false # a boolean
43
delay = 0.75 # a float
44
FRENCH="œuvre" # unicode can be used
45
- FRENCH2="\\u0153uvre" # same unicode string, using a 16-bit escape code
46
- FRENCH3="\\U00000153uvre" # same unicode string, using a 32-bit escape code
47
- STRING_WITH_ESCAPE_CODES="supported, including \\r\\n\\"\\\\"
+ FRENCH2="\u0153uvre" # same unicode string, using a 16-bit escape code
+ FRENCH3="\U00000153uvre" # same unicode string, using a 32-bit escape code
+ STRING_WITH_ESCAPE_CODES="supported, including \r \n \" \\"
48
49
Details of the TOML language subset
50
-----------------------------------
0 commit comments