1.0.4 • Published 7 years ago
gitbook-plugin-recently-updated v1.0.4
gitbook-plugin-recently-updated
Lists recently updated articles, arranged by date
Installation
Install via yarn or npm:
# Yarn
yarn add github:jwarby/gitbook-plugin-recently-updated
# NPM
npm install --save jwarby/gitbook-plugin-recently-updatedAdd to plugins in book.json:
...
"plugins": [
...
"recently-updated"
...
]
...Usage
{% recentlyupdated %}{% endrecentlyupdated %}Options
limit (default: 10)
Controls maximum number of articles to display, eg show only the last 5 updated articles:
{% recentlyupdated limit="5" %}{% endrecentlyupdated %}since (default: 0)
Show articles changed since specified JavaScript timestamp (milliseconds), eg show articles changed on or after 4th Dec 2017 00:00:00 (UTC):
{% recentlyupdated since="1512345600000" %}{% endrecentlyupdated %}To disable the limit param and show all articles changed since the
specified timestamp (instead of the default 10), set it to an empty value:
{% recentlyupdated since="1512345600000", limit="" %}{% endrecentlyupdated %}