How can I add a leading 0 to a counter

Just wondering if there is a way to get a leading 0 in a <$list> widget with a counter.

<$list filter="[tag[tag-name]" variable="tag" counter="count">
  <<count>>. <<tag>>
</$list>

So instead of getting the output of:

1. list-item
2. list-item
3. list-item

I get this output:

01. list-item
02. list-item
03. list-item

Have a look at the Pad Operator which does exactly what you want :slightly_smiling_face:

Instead of <<count>>, use <$text text={{{ [<count>pad[2]] }}}/>

-e

@TW_Tones , @EricShulman , I figured there would have to be a way.