Commit 3f65c799 by Dominik Prokop Committed by GitHub

Docs: Fix raw format variable docs (#29945)

parent 216b6b01
......@@ -105,9 +105,9 @@ Interpolation result: 'test1.|test2'
Turns off data source-specific formatting, such as single quotes in an SQL query.
```bash
servers = ['test1.', 'test2']
servers = ['test.1', 'test2']
String to interpolate: '${var_name:raw}'
Interpolation result: '{test.1,test2}'
Interpolation result: 'test.1,test2'
```
## Regex
......@@ -148,4 +148,4 @@ Formats single- and multi-valued variables into their text representation. For a
servers = ["test1", "test2"]
String to interpolate: '${servers:text}'
Interpolation result: "test1 + test2"
```
\ No newline at end of file
```
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