Skip to content

Commit

Permalink
Reserve all other special characters so invalid Windows paths are eas…
Browse files Browse the repository at this point in the history
…ier to catch
  • Loading branch information
ambv committed Feb 25, 2013
1 parent 00f11b0 commit 67b8e59
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ Here is the list of special characters.
\\ - backslash (0x5c)
```

Other special characters are reserved and, if used, TOML should produce an
error. This means paths on Windows will always have to use double backslashes.

```toml
wrong = "C:\Users\nodejs\templates" # note: doesn't produce a valid path
right = "C:\\Users\\nodejs\\templates"
```

Integers are bare numbers, all alone. Feeling negative? Do what's natural.
64-bit minimum size expected.

Expand Down

0 comments on commit 67b8e59

Please sign in to comment.