I would like to have a date formatted as here on SO: "Feb 6, '14."
I can not put an apostrophe there until the number 14.
I tried the following formatting strings:
{{model.since | date:'MMM d, \'yy'}}
{{model.since | date:'MMM d, &
{{model.since | date:"MMM d, 'yy"}}
{{model.since | date:"MMM d, 'yy"}}
Apostrophe is not displayed.
How can I put an apostrophe there?
source
share