From fc2d587fbcea3b740607a95afdfe045abb85cc27 Mon Sep 17 00:00:00 2001 From: ayush-that Date: Fri, 10 Jul 2026 21:47:56 +0530 Subject: [PATCH] [DOC] Table: fix format modifier syntax in dynamic links example Signed-off-by: ayush-that --- docs/table/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/table/README.md b/docs/table/README.md index 5cfcca1cb..cda056d85 100644 --- a/docs/table/README.md +++ b/docs/table/README.md @@ -44,7 +44,7 @@ Perses supports formatting modifiers to control how values are embedded into lin For example, ``` -${__data.fields["column_name:csv"]} +${__data.fields["column_name"]:csv} ``` The following interpolations are supported by Perses @@ -65,7 +65,11 @@ The following interpolations are supported by Perses - text - queryparam +Cell values embedded into links are URL encoded by default. Use the `raw` format to skip encoding for complete URLs: +``` +${__data.fields["url"]:raw} +``` ## Transformations