From 89a02b6f8c4cfd68e90c713d2949c83251e0c830 Mon Sep 17 00:00:00 2001 From: Max Beatty Date: Tue, 20 Jun 2017 11:25:45 -0700 Subject: [PATCH] document trimming behavior of values during parsing closes #197 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4484030b..e286380b 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,7 @@ The parsing engine currently supports the following rules: line'} ``` - inner quotes are maintained (think JSON) (`JSON={"foo": "bar"}` becomes `{JSON:"{\"foo\": \"bar\"}"`) +- whitespace is removed from both ends of the value (see more on [`trim`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim)) (`FOO=" some value "` becomes `{FOO: 'some value'}`) ## FAQ