Is it possible to inject a new shorthand format into the Angular date filter?
For example, I can currently do this: {{ myScope.timestamp | date: 'shortDate' }}.
What I'd like to do is this: {{ myScope.timestamp | date: 'paddedShortDate' }}, which would force single-digit date parts to be padded with a leading 0.
I realize I can create my own filter to do this for me—I'm more curious if existing filters are extensive in any manner.