Skip to content

{{#replicate}}

Repeats the body block the specified number of times.

Often used to generate test data.

{{#replicate 10}}
{{#replicate 3}}
This value is replicated 3 times!
{{/replicate}}

This returns:

This value is replicated 3 times!
This value is replicated 3 times!
This value is replicated 3 times!