Map an array's property to a new array and loop over it
Code Block
language
xml
<!-- Prints all authors in the format "#. Name" -->
{{setVariable "commentAuthors" (pluck issue.comment "author.displayName")}}
{{#each (unique commentAuthors)}}
{{add @index 1}}. {{this}}
{{/each}}
Expand
title
Filter an array on a specific property
Code Block
<!-- Prints all comments from the issue's creator -->
{{#filter issue.comment issue.creator.accountId prop="author.accountId"}}
Created: {{format this.created.raw "dateMed"}}
{{this.body}}
{{/filter}}