alfresco-ng2-components/docs/core/time-ago.pipe.md
Andy Stark 347b2bb5e8 [ADF-2526] Fixed interpolation marker issue in doc files (#3098)
* [ADF-2526] Test commit of a file with escape tags

* [ADF-2526] Fixed interpolation marker issue in doc code samples
2018-03-20 14:03:12 +00:00

26 lines
456 B
Markdown

---
Added: v2.0.0
Status: Active
---
# Time Ago pipe
Converts a recent past date into a number of days ago.
## Basic Usage
<!-- {% raw %} -->
```HTML
<div>
Last modified: {{ date | adfTimeAgo }}
</div>
```
<!-- {% endraw %} -->
## Details
The pipe finds the difference between the input date and the current date. If it
is less than seven days then then the date will be formatted as "X days ago".
Otherwise, the usual full date format is used.