From ba30ed8ef2b233fed1c0233e9104567caf4274e6 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 4 Jul 2015 08:04:53 -0400 Subject: [PATCH] add note about escaping quotes and backslashes --- forge.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/forge.go b/forge.go index d991bcf..bf5b1f4 100644 --- a/forge.go +++ b/forge.go @@ -46,7 +46,8 @@ // // Values // * String: -// Any value enclosed in double quotes (single quotes not allowed) (e.g. "string") +// Any value enclosed in double quotes (single quotes not allowed) (e.g. "string"). +// Double quotes and backslashes can be escaped with backslashes (e.g. "\"quoted\"" and "\\<--backslash") // * Integer: // Any number without decimal places (e.g. 500) // * Float: