Skip to content

Commit bee7d93

Browse files
authored
Fix lists in rewrite-tag.md
Signed-off-by: Timon Engelke <[email protected]>
1 parent 10bfc63 commit bee7d93

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pipeline/filters/rewrite-tag.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ The key represents the name of the _record key_ that holds the `value` to use to
5555

5656
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:
5757

58-
-`$name` = `abc-123`
59-
-`$ss['s1']['s2']` = `flb`
58+
- `$name` = `abc-123`
59+
- `$ss['s1']['s2']` = `flb`
6060

6161
A key must point to a value that contains a string. It's not valid for numbers, Boolean values, maps, or arrays.
6262

@@ -74,9 +74,9 @@ This example uses parentheses to specify groups of data. If the pattern matches
7474

7575
If `$name` equals `abc-123`, then the following placeholders will be created:
7676

77-
-`$0` = `abc-123`
78-
-`$1` = `abc`
79-
-`$2` = `123`
77+
- `$0` = `abc-123`
78+
- `$1` = `abc`
79+
- `$2` = `123`
8080

8181
If the regular expression doesn't match an incoming record, the rule will be skipped and the next rule (if present) will be processed.
8282

0 commit comments

Comments
 (0)