I'd like for a way to display all the rolls in a template, and not just the total. An example of this would be if I rolled 5d6, I'd like the template to display the results, something like "5, 3, 2, 4, 6" and not just the number "20". I'd picture a helper function that would be used something like this: {{#rollSequence() <rollname>}}     <div> |{{rollname}}| </div> {{/rollSequence() <rollname>}} Where it would repeat all the HTML inside that helper function, but on each loop, it would display the value of each of the dice instead of the total on the {{rollname}} With some CSS, it would display this: |5| |3| |2| |4| |6|