We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00f11b0 commit 67b8e59Copy full SHA for 67b8e59
README.md
@@ -99,6 +99,14 @@ Here is the list of special characters.
99
\\ - backslash (0x5c)
100
```
101
102
+Other special characters are reserved and, if used, TOML should produce an
103
+error. This means paths on Windows will always have to use double backslashes.
104
+
105
+```toml
106
+wrong = "C:\Users\nodejs\templates" # note: doesn't produce a valid path
107
+right = "C:\\Users\\nodejs\\templates"
108
+```
109
110
Integers are bare numbers, all alone. Feeling negative? Do what's natural.
111
64-bit minimum size expected.
112
0 commit comments