From 677204238c2a56bd09ff1cef34d9c4ff919c0e12 Mon Sep 17 00:00:00 2001 From: jwynn6 <6757260+jwynn6@users.noreply.github.com> Date: Sat, 10 May 2025 20:55:55 -0400 Subject: [PATCH] Update pathformat.rst (#5754) Added explainer about escaping closing braces `$}` --- docs/reference/pathformat.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/pathformat.rst b/docs/reference/pathformat.rst index d80bdec34..d89eb6767 100644 --- a/docs/reference/pathformat.rst +++ b/docs/reference/pathformat.rst @@ -173,7 +173,7 @@ write a function call. To escape any of these characters (except ``{``, and * ``${``, which is ambiguous with the variable reference syntax (like ``${title}``). To insert a ``{`` alone, it's always sufficient to just type - ``{``. + ``{``. You do, however need to use ``$`` to escape a closing brace ``$}``. * commas are used as argument separators in function calls. Inside of a function's argument, use ``$,`` to get a literal ``,`` character. Outside of any function argument, escaping is not necessary: ``,`` by itself will