From f20a6547bdab3367c801b88665e4a226e9e09e55 Mon Sep 17 00:00:00 2001 From: anovis Date: Wed, 2 Jun 2021 11:25:56 -0400 Subject: [PATCH] update based on comments Signed-off-by: anovis --- docs/features/software-templates/writing-templates.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/features/software-templates/writing-templates.md b/docs/features/software-templates/writing-templates.md index 3a06b27ec2..44812ee0b3 100644 --- a/docs/features/software-templates/writing-templates.md +++ b/docs/features/software-templates/writing-templates.md @@ -322,7 +322,9 @@ You might have noticed in the examples that there are `{{ }}`, and these are a to the steps will be available by using the template syntax `{{ parameters.something }}`. This is great for passing the values from the form into different steps and reusing these input variables. To pass arrays or objects -use the syntax `{{ json paramaters.something }}`. +use the syntax `{{ json paramaters.something }}` where `paramaters.something` is +of type `object` or `array` in the jsonSchema, such as the nicknames paramter +in the previous example. As you can see above in the `Outputs` section, `actions` and `steps` can also output things. So you can grab that output by using