Skip to content

Commit c895c7c

Browse files
committed
wip
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 1f9d383 commit c895c7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Although it is limited only to Kubernetes resources it makes it very easy to use
1313

1414
ONLY for object-based templates (thus not string templates) the values can be set using the placeholder notation from Qute:
1515
```yaml
16-
value: "{string.value.reference}"
16+
value: "{string.value}"
1717
```
1818
With this standard notation, the result value will be always encoded in double quotes:
1919
```yaml
@@ -22,7 +22,7 @@ Although it is limited only to Kubernetes resources it makes it very easy to use
2222
Since there is no simple way to check if the referenced value is a string or other value
2323
(boolean, numeric, etc) for non-string values, user should use double brackets:
2424
```yaml
25-
value: "{{nonstring.value.reference}}"
25+
value: "{{nonstring.value}}"
2626
```
2727
what would result in a value without enclosed double quotes in the produced yaml:
2828
```yaml

0 commit comments

Comments
 (0)