From 047658256e80f06c36d51b59604c35cd5c4abc2a Mon Sep 17 00:00:00 2001 From: anovis Date: Thu, 3 Jun 2021 13:30:13 -0400 Subject: [PATCH] prettify Signed-off-by: anovis --- .../features/software-templates/writing-templates.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/features/software-templates/writing-templates.md b/docs/features/software-templates/writing-templates.md index 4f42489244..f9c11edea3 100644 --- a/docs/features/software-templates/writing-templates.md +++ b/docs/features/software-templates/writing-templates.md @@ -215,8 +215,8 @@ spec: ui:autocomplete: given-name nicknames: type: array - items: - type: string + items: + type: string ui:options: orderable: false telephone: @@ -321,10 +321,10 @@ You might have noticed in the examples that there are `{{ }}`, and these are a `yaml` together. All the form inputs from the `parameters` section, when passed 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 }}` where `paramaters.something` is -of type `object` or `array` in the `jsonSchema`, such as the `nicknames` parameter -in the previous example. +into different steps and reusing these input variables. To pass arrays or +objects use the syntax `{{ json paramaters.something }}` where +`paramaters.something` is of type `object` or `array` in the `jsonSchema`, such +as the `nicknames` parameter 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