From d5caa98936e3747d51d0deddae7f66d139f6a9f0 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 18 May 2023 01:04:19 +1000 Subject: [PATCH] Report helper docs (#4845) * Add docs for more helper functions * add docs about dot notation lookup --- docs/docs/report/labels.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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 %} +```