Report helper docs (#4845)

* Add docs for more helper functions

* add docs about dot notation lookup
This commit is contained in:
Oliver 2023-05-18 01:04:19 +10:00 committed by GitHub
parent b732b4ceb5
commit d5caa98936
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -310,3 +310,12 @@ Length: {{ parameters.length }}
{% endraw %}
```
Note that for parameters which include a `space` character in their name, lookup using the "dot" notation won't work! In this case, try using the [key lookup](./helpers.md#key-access) method:
```html
{% raw %}
Voltage Rating: {% getkey parameters "Voltage Rating" %}
{% endraw %}
```