Sphinx extension that rewrites GitHub-style links into proper Sphinx references.
Project description
Sphinx extension that rewrites GitHub-style links into proper Sphinx references.
Project Description
I like to have links in the README that point to other sections of the documentation, so you can navigate the docs easily from the GitHub repo itself. However, Sphinx does not understand GitHub-style links (e.g., `reference <docs/reference.rst>`_), so links break when building the docs. If you write links using Sphinx syntax instead, they work in the built docs but not on GitHub.
This extension solves this problem by rewriting GitHub-style links into proper Sphinx references during the Sphinx build process. It scans the document for links that point to local files and rewrites them to use Sphinx’s internal referencing system.
You can combine this with a script to removes all of the links in the README during CI before publishing to pypi, so that the README on PyPI does not contain broken links, and keep a single README file for GitHub, Sphinx and PyPI.
Key Features
Transform GitHub-style links: Automatically rewrite links in the documentation to use Sphinx’s internal referencing system.
Ignores external links: Only processes local file links, leaving external URLs untouched.
Configurable prefixes: Specify path prefixes to strip from links for cleaner references.
Support for multiple file extensions: Configure which file extensions to process (e.g., .rst, .md).
Easy integration: Simple setup and configuration in conf.py.
Quick Start Guide
Install the extension using pip:
pip install sphinx-linkfix
Add the extension to your Sphinx conf.py file:
extensions = [
...,
'sphinx_linkfix',
]
(Optional) Configure the extension in conf.py:
# List of path prefixes to strip from links
sphinx_linkfix_strip_prefixes = ('docs/', 'source/')
# List of file extensions to process
sphinx_linkfix_file_extensions = ('.rst', '.md')
Write links in your documentation using GitHub-style syntax, e.g., `Reference <REFERENCE.rst>`_. (You can use the repository README.rst as an examples)
Create files in your sphinx directory with the same names that you used in the links, that include the original file. E.g., docs/REFERENCE.rst with
.. include:: ../REFERENCE.rst
During the Sphinx build process, the extension scans the documents for links that point to local files and rewrites them to use Sphinx’s internal referencing system.
Documentation
Essential Guides:
Installation Guide - Setup instructions and requirements
Contributing Guidelines - Development standards and contribution process
License - License terms and usage rights
Authors - Project contributors and maintainers
Changelog - Project history and version changes
Code of Conduct - Guidelines for participation and conduct
Project details
Release history Release notifications | RSS feed
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_linkfix-0.1.4.tar.gz.
File metadata
- Download URL: sphinx_linkfix-0.1.4.tar.gz
- Upload date:
- Size: 40.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51189adb949b91a742673bff7f56802f2e92965688cc08d9a68266853d57ca99
|
|
| MD5 |
f389870c8ec2827fa3df8e21d5e63f4b
|
|
| BLAKE2b-256 |
9585af0782ac402306156f75cf1f55f46d9a9601e99881b26a7864c31d46e687
|
File details
Details for the file sphinx_linkfix-0.1.4-py3-none-any.whl.
File metadata
- Download URL: sphinx_linkfix-0.1.4-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e8c4861f4b7271b44c8271b7f99ac71fcf3e2a104017dc234cd16169cc520fc
|
|
| MD5 |
1610a108f8cf7314872353b71dc3fff9
|
|
| BLAKE2b-256 |
7947739e8fb6a38d2c42e4025ffbdb2311f5a64a03a115d72b3038f19d0d288f
|