Docs: Fix raw format variable docs (#29945)

pull/29952/head
Dominik Prokop 5 years ago committed by GitHub
parent 216b6b01f4
commit 3f65c79998
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      docs/sources/variables/advanced-variable-format-options.md

@ -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"
```
```

Loading…
Cancel
Save