blob: 749394704913109ad3ba9fc3ebf11669f87e5adb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# A : in that position should result in invalid yaml
name: '{{ name }}': some text
description: |
{{ description if description else "." | indent(width=2, first=False) }}
position: '{{ position }}'
# # quantity (integer): how many items are there
quantity: {{ quantity if quantity else "0" }}
# # value (float): how much each item is
value: 0.0
# # cost (decimal): how much this costs
cost: '0'
# # other (yaml):
other:
|