Commit 094254c0 by Simon Podlipsky Committed by GitHub

Formats: Add `raw` format to formatRegistry (#26743)

parent a0c1e53f
......@@ -29,6 +29,12 @@ export const formatRegistry = new Registry<FormatRegistryItem>(() => {
},
},
{
id: 'raw',
name: 'raw',
description: 'Keep value as is',
formatter: value => value,
},
{
id: 'regex',
name: 'Regex',
description: 'Values are regex escaped and multi-valued variables generate a (<value>|<value>) expression',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment