mkdocs-git-committers-plugin-2
mkdocs-git-committers-plugin-2 copied to clipboard
MkDocs plugin for displaying a list of GitHub (.com or Enterprise) contributors on each page. Encourages contributions to the documentation!
When writing documentation, we may use the `serve` command to modify and preview the results in real time. But this creates an annoying problem where the `serve` command rebuilds the...
It took me some trial and errors to get the contributors icons to appear on my `mkdocs` docs. I had to play with the `scopes` on my token to make...
Hello there 👋🏻, Actually, the [comparison](https://github.com/ojacques/mkdocs-git-committers-plugin-2/blob/master/mkdocs_git_committers_plugin_2/plugin.py#L155) between the user having commited and gitlab users is done this way: ```py if user['name'] == commit['author_name']: ``` which I find too strict. Sadly,...
Hey! In the [setup](https://github.com/ojacques/mkdocs-git-committers-plugin-2?tab=readme-ov-file#setup), we can find this snippet: ```yaml plugins: - git-committers: gitlab_repository: 12345678 token: !ENV ["CI_JOB_TOKEN"] ``` Which in fact does not work using recent Gitlab versions. [The...