xoxys.general/prefix.md
Robert Kaussow dff4b91525
Some checks failed
continuous-integration/drone/push Build is failing
add documentation
2020-08-22 20:07:48 +02:00

376 B

Simple filter to prefix all items from a list. Default prefix will be -- but you can also pass a custom one.

Example

my_list:
  - item1
  - item2

{{ my_list | prefix | join(' ') }}

# result:
# "--item1 --item2"

Or pass a custom prefix:

my_list:
  - item1
  - item2

{{ my_list | prefix(prefix='-') | join(' ') }}

# result:
# "-item1 -item2"