Metadata-Version: 2.1
Name: mkdocs-git-timeline-plugin
Version: 0.0.7
Summary: Mkdocs plugin to display git timeline of a page
Home-page: https://github.com/timvink/mkdocs-git-timeline-plugin
Author: Tim Vink, Franciszek Piszcz
Author-email: vinktim@gmail.com, franek.piszcz@gmail.com
License: MIT
Keywords: mkdocs git timeline contributors committers authors plugin
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Documentation
Classifier: Topic :: Text Processing
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mkdocs (>=1.0)

[![Actions Status](https://github.com/timvink/mkdocs-git-timeline-plugin/workflows/pytest/badge.svg)](https://github.com/timvink/mkdocs-git-timeline-plugin/actions)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mkdocs-git-timeline-plugin)
![PyPI](https://img.shields.io/pypi/v/mkdocs-git-timeline-plugin)
![PyPI - Downloads](https://img.shields.io/pypi/dm/mkdocs-git-timeline-plugin)
[![codecov](https://codecov.io/gh/timvink/mkdocs-git-timeline-plugin/branch/master/graph/badge.svg)](https://codecov.io/gh/timvink/mkdocs-git-timeline-plugin)
![GitHub contributors](https://img.shields.io/github/contributors/timvink/mkdocs-git-timeline-plugin)
![PyPI - License](https://img.shields.io/pypi/l/mkdocs-git-timeline-plugin)

# mkdocs-git-timeline-plugin

Lightweight [MkDocs](https://www.mkdocs.org/) plugin to display git authors of a markdown page:

> Authors: Jane Doe, John Doe

See the [demo](https://timvink.github.io/mkdocs-git-timeline-plugin/). The plugin only considers authors of the current lines in the page ('surviving code' using `git blame`).

Other MkDocs plugins that use information from git:

- [mkdocs-git-revision-date-localized-plugin](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin) for displaying the last revision date
- [mkdocs-git-committers-plugin](https://github.com/byrnereese/mkdocs-git-committers-plugin) for displaying authors' github user profiles

## Setup

Install the plugin using pip3:

```bash
pip3 install mkdocs-git-timeline-plugin
```

Next, add the following lines to your `mkdocs.yml`:

```yml
plugins:
  - search
  - git-timeline
```

> 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.

You can then use the `{{ git_page_authors }}` tag in your markdown document, or choose to customize your mkdocs theme (see [usage](https://timvink.github.io/mkdocs-git-timeline-plugin/usage.html) page in the docs).

### Note when using build environments

This plugin needs access to the last commit that touched a specific file to be able to retrieve the date. By default many build environments only retrieve the last commit, which means you might need to:
<details>
  <summary>Change your CI settings</summary>
  
  - github actions: set `fetch_depth` to `0` ([docs](https://github.com/actions/checkout))
  - gitlab runners: set `GIT_DEPTH` to `1000` ([docs](https://docs.gitlab.com/ee/user/project/pipelines/settings.html#git-shallow-clone))
  - bitbucket pipelines: set `clone: depth: full` ([docs](https://support.atlassian.com/bitbucket-cloud/docs/configure-bitbucket-pipelinesyml/))
</details>


## Documentation

See [timvink.github.io/mkdocs-git-timeline-plugin](https://timvink.github.io/mkdocs-git-timeline-plugin/)

## Contributing

Very much open to contributions! Please read [contributing guide](https://timvink.github.io/mkdocs-git-timeline-plugin/contributing.html) before putting in any work.
