Mkdocs Git Authors Plugin

0.10.0 · active · verified Tue Apr 14

mkdocs-git-authors-plugin is a lightweight MkDocs plugin designed to display git authors of a markdown page directly within your generated documentation. It is currently at version 0.10.0 and maintains an active development cycle with frequent releases.

Warnings

Install

Imports

Quickstart

To enable the plugin, add `git-authors` to the `plugins` section in your `mkdocs.yml` file. You can then use Jinja tags like `{{ git_page_authors }}` directly within your Markdown files or theme templates to display author information.

plugins:
  - search
  - git-authors:
      show_contribution: true
      show_email_address: true

# To display authors in your markdown pages (e.g., at the end of a page):
# Add {{ git_page_authors }} to your .md file or theme template.

view raw JSON →