diff --git a/docs/docs/report/labels.md b/docs/docs/report/labels.md index 29efced630..fc0c81bf99 100644 --- a/docs/docs/report/labels.md +++ b/docs/docs/report/labels.md @@ -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 %} +```