From 523801af5f6efc6e90c4d7a2d8746933ebffcfe3 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 10 Dec 2024 13:07:10 -0800 Subject: [PATCH] Note lack of support for string interpolation (#2515) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1fc7cccd2d..1c626eef31 100644 --- a/README.md +++ b/README.md @@ -1439,6 +1439,10 @@ braces: ### Strings +`'single'`, `"double"`, and `'''triple'''` quoted string literals are +supported. Unlike in recipe bodies, `{{…}}` interpolations are not supported +inside strings. + Double-quoted strings support escape sequences: ```just