mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
fe7bfa2173
Currently the first link doesn’t work because they are both referencing [1]
1.5 KiB
1.5 KiB
Revision date
mkdocs-git-revision-date-localized-plugin is an extension that shows the
date on which a Markdown file was last updated in Git at the bottom of each
page. The date is extracted at the time of the build, so mkdocs build
must
be triggered from within a Git repository.
Installation
Install the plugin with the following command:
pip install mkdocs-git-revision-date-localized-plugin
Next, add the following lines to your mkdocs.yml
:
plugins:
- git-revision-date-localized
Usage
The date is automatiaclly added at the bottom of each page, e.g.:
Last updated: 9 December, 2019
Changing the language
The date is printed according to the locale which is determined through the
theme language that was set in mkdocs.yml
.
Changing the format
To change the date format, set the type
parameter to one of date
,
datetime
, iso_date
, iso_datetime
or timeago
, i.e.:
28 November, 2019 # type: date
28 November, 2019 13:57:28 # type: datetime
2019-11-28 # type: iso_date
2019-11-28 13:57:26 # type: iso_datetime
20 hours ago # type: timeago
Example:
plugins:
- git-revision-date-localized:
type: timeago
Result:
20 hours ago