[Idea] Isolated Tens and Units Digit of Day in Month Tags

Are there tags for the first and second digit of the date (e.g. 0 and 1 or 3 and 1)

Currently Facer supports the following three Day tags, which do not isolate the tens and units digit of Day in Month:

Would you like this thread to be converted into a feature request?

yes It would be a great feature to have

Search for the math to do this on the min/sec. You should be able to apply this to days as well. Just update the tags.

I agree, it should be doable with some number crunching, but that said, it would be nice to simply have the tags and not to have to resort to maths…

Day of the Month:

1st digit: (floor(#Dd#/10))
2nd digit: (#Dd#%10)

Minutes:

(floor(#Dm#/10))
(#Dm#-(10*floor(#Dm#/10)))

Also if you need the First Letter of the Month you could use this

$#DM#=1?J:$$#DM#=2?F:$$#DM#=3?M:$$#DM#=4?A:$$#DM#=5?M:$$#DM#=6?J:$$#DM#=7?J:$$#DM#=8?A:$$#DM#=9?S:$$#DM#=10?O:$$#DM#=11?N:$$#DM#=12?D:$

I have used all the above in this face,