From 67b8e59fa5d89fea270b6fba5450c2b3efab03ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Langa?= Date: Mon, 25 Feb 2013 14:17:09 +0100 Subject: [PATCH] Reserve all other special characters so invalid Windows paths are easier to catch --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 16e80a91..6e621a6d 100644 --- a/README.md +++ b/README.md @@ -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.