From f9c377a78859430e7cc71e0be5982cdb335c35fc Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 10 Dec 2024 13:03:54 -0800 Subject: [PATCH 1/2] Note that interpolation is not supported inside strings --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1fc7cccd2d..7609b87f3c 100644 --- a/README.md +++ b/README.md @@ -1439,6 +1439,10 @@ braces: ### Strings +`'single'`, `"double"`, and `'''triple'''` quoted string literals are +supported. Unlike recipe bodies, `{{…}}` interpolations are not supported +inside strings. + Double-quoted strings support escape sequences: ```just From e606ae644e1f85866f24df78f9f8bef6fb2e5448 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 10 Dec 2024 13:04:22 -0800 Subject: [PATCH 2/2] Reform --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7609b87f3c..1c626eef31 100644 --- a/README.md +++ b/README.md @@ -1440,7 +1440,7 @@ braces: ### Strings `'single'`, `"double"`, and `'''triple'''` quoted string literals are -supported. Unlike recipe bodies, `{{…}}` interpolations are not supported +supported. Unlike in recipe bodies, `{{…}}` interpolations are not supported inside strings. Double-quoted strings support escape sequences: