{{,}}
Last updated
Was this helpful?
Last updated
Was this helpful?
Produces a literal comma (,
) exactly if it is required for valid JSON.
If conditional expressions follow each other, it can be hard to say whether a comma is needed or not to obtain valid JSON:
If the first condition is true
, a name/value pair will be produced. If and only if the second condition is true
as well, a comma will be needed to separate both pairs. The same applies to the following which may yield nothing.
To avoid having to repeat various combinations of the conditions to decide whether or not to emit a comma, use the comma command {{,}}
to automatically produce all required commas:
The {{,}}
could be placed in the body of {{if}}
as well:
📎 Note that the comma may appear after some whitespace in the output string.
The use of the {{,}}
should be seen as a last resort, because it impairs the template's readability. In many cases, the decision whether to place a comma or not can be made a priori by reordering the name/value pairs, producing leading commas in conditionals or having a fixed {{else}}
block.
The produces commas between its productions, too. In loop bodies comma commands are allowed but usually not necessary.