From 210ff0925d391213556f07bf6ce621967f0368ca Mon Sep 17 00:00:00 2001 From: Leo Date: Sat, 3 Aug 2024 03:09:57 +0800 Subject: [PATCH] docs(external docs): Emphasize the $$ rather than $ in config file. (#20991) * docs: Emphasize the $$ rather than $ in config file. * Update website/cue/reference/remap/functions/replace.cue Co-authored-by: Ursula Chen <58821586+urseberry@users.noreply.github.com> --------- Co-authored-by: Jesse Szwedko Co-authored-by: Ursula Chen <58821586+urseberry@users.noreply.github.com> --- website/cue/reference/remap/functions/replace.cue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/cue/reference/remap/functions/replace.cue b/website/cue/reference/remap/functions/replace.cue index ccbf8238dd9b3..f15a1addc5804 100644 --- a/website/cue/reference/remap/functions/replace.cue +++ b/website/cue/reference/remap/functions/replace.cue @@ -62,7 +62,7 @@ remap: functions: replace: { return: "Pineapples and Bananas" }, { - title: "Replace with capture groups" + title: "Replace with capture groups (Note: Use `$$num` in config files)" source: #""" replace("foo123bar", r'foo(?P\d+)bar', "$num") """#