No project description provided
Project description
sphinx-all-contributors
sphinx-all-contributors is a Sphinx extension that allows you to easily display a list of contributors from a .all-contributorsrc file in your Sphinx documentation. The list is generated in a simple, readable format like:
- Contributor Name 1 for ideas, docs
- Contributor Name 2 for code
Table of Contents
Install
pip install sphinx-all-contributors
Usage
Add sphinx-all-contributors to the extensions list in your conf.py:
# conf.py
extensions = [
"sphinx_all_contributors",
# other extensions
]
Create a .all-contributorsrc file in your documentation source directory (or another location). You can create this file manually following the all-contributors format, or you can use the all-contributors bot to automate this process and ensure that your contributor data is accurate and up-to-date. An example .all-contributorsrc file looks like this:
{
"contributors": [
{
"name": "Contributor Name 1",
"contributions": ["ideas", "docs"]
},
{
"name": "Contributor Name 2",
"contributions": ["code"]
}
]
}
In your .rst file, use the all-contributors directive to display the list of contributors. You can specify the relative path to the .all-contributorsrc file or omit it to use the default path (.all-contributorsrc in the source directory).
Example 1: Using the default .all-contributorsrc path:
.. all-contributors::
Example 2: Specifying a relative path to the .all-contributorsrc file:
.. all-contributors:: config/.all-contributorsrc
Build your documentation:
make html
The generated HTML (or other formats) will contain a list of contributors in the format:
- Contributor Name 1 for ideas, docs
- Contributor Name 2 for code
Features
- Automatically reads the list of contributors from a
.all-contributorsrcfile. - Customizable relative path to the
.all-contributorsrcfile. - Outputs a list of contributors in a clean, human-readable format.
- Optional emoji display for contribution types using the
:emoji:flag. - Optional profile links for contributors using the
:profile:flag.
Options
The all-contributors directive supports the following options:
:profile: flag
Makes contributor names clickable links to their profile URLs (if profile URLs are available in the .all-contributorsrc file).
Example:
.. all-contributors::
:profile:
Output:
- [Contributor Name 1](profile-url) for ideas, docs
- [Contributor Name 2](profile-url) for code
:emoji: flag
Displays emoji icons before contribution types based on the all-contributors emoji key.
Example:
.. all-contributors::
:emoji:
Output:
- Contributor Name 1 for 🤔 ideas, 📖 docs
- Contributor Name 2 for 💻 code
You can combine both options:
.. all-contributors::
:profile:
:emoji:
Contributing
Contributions are welcome! Please open an issue or submit a pull request on GitHub.
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sphinx_all_contributors-0.4.0.tar.gz.
File metadata
- Download URL: sphinx_all_contributors-0.4.0.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a77dfb11204ccba43b13deffa0c5a3e22c5a5d968b37b74f45a394e669aff6a
|
|
| MD5 |
fbda9e0eae1cc703f0c99663a245e90b
|
|
| BLAKE2b-256 |
96a264e823e7fab31813a080eb00eb316fb18fbcf5d37abd30f61515e8af375c
|
File details
Details for the file sphinx_all_contributors-0.4.0-py3-none-any.whl.
File metadata
- Download URL: sphinx_all_contributors-0.4.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dbc691192cd6d4de30e674882a9225b6cb700a2dbfcf249b46d0c2fc9d32527
|
|
| MD5 |
a42a45d41b6bc90442dff7b30dd97ca1
|
|
| BLAKE2b-256 |
ed71c6573f5d37a748c82a4289453efd05fdfe8accde81028665b81c58833106
|