From bee7d93ceaa3b7faa7a8d575c00922f4146f6293 Mon Sep 17 00:00:00 2001 From: Timon Engelke <25013222+timonegk@users.noreply.github.com> Date: Wed, 17 Sep 2025 10:21:41 +0200 Subject: [PATCH] Fix lists in rewrite-tag.md Signed-off-by: Timon Engelke <25013222+timonegk@users.noreply.github.com> --- pipeline/filters/rewrite-tag.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pipeline/filters/rewrite-tag.md b/pipeline/filters/rewrite-tag.md index fb4272e54..03944ebe8 100644 --- a/pipeline/filters/rewrite-tag.md +++ b/pipeline/filters/rewrite-tag.md @@ -55,8 +55,8 @@ The key represents the name of the _record key_ that holds the `value` to use to To match against the value of the key `name`, you must use `$name`. The key selector is flexible enough to allow to match nested levels of sub-maps from the structure. To capture the value of the nested key `s2`, specify `$ss['s1']['s2']`, for short: --`$name` = `abc-123` --`$ss['s1']['s2']` = `flb` +- `$name` = `abc-123` +- `$ss['s1']['s2']` = `flb` A key must point to a value that contains a string. It's not valid for numbers, Boolean values, maps, or arrays. @@ -74,9 +74,9 @@ This example uses parentheses to specify groups of data. If the pattern matches If `$name` equals `abc-123`, then the following placeholders will be created: --`$0` = `abc-123` --`$1` = `abc` --`$2` = `123` +- `$0` = `abc-123` +- `$1` = `abc` +- `$2` = `123` If the regular expression doesn't match an incoming record, the rule will be skipped and the next rule (if present) will be processed.