You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MkDocs plugin that displays the last revision date of the current page of the documentation based on Git. The revision date will be displayed in ISO format (YYYY-mm-dd). If you need other date formats check out timvink's fork
Setup
Install the plugin using pip:
pip install mkdocs-git-revision-date-plugin
Activate the plugin in mkdocs.yml:
plugins:
- search
- git-revision-date
Note: If you have no plugins entry in your config file yet, you'll likely also want to add the search plugin. MkDocs enables it by default if there is no plugins entry set, but now you have to enable it explicitly.
Setting this option will enable the build only if there is an environment variable set to 1. Default is not set.
modify_md
Setting this option to false will disable the use of {{ git_revision_date }} in markdown files. Default is true.
as_datetime
Setting this option to True will output git_revision_date as a python datetime. This means you can use jinja2 date formatting, for example as {{ git_revision_date.strftime('%d %B %Y') }}. Default is false.
About
MkDocs plugin for setting revision date from git per markdown file