Generate Beautiful reStructuredText README.rst for GitHub, PyPi, GitLab, BitBucket
Project description
A Sphinx extension to generate README.rst files that render beautifully on GitHub, PyPi, GitLab, BitBucket
About Sphinx README
📚 What’s Sphinx README? |
---|
sphinx_readme is a reStructuredText parser that uses Sphinx to generate rst files that render beautifully on GitHub, PyPi, GitLab, and BitBucket. |
With sphinx_readme , there’s no need to rewrite your README.rst as a README.md file
Files generated by sphinx_readme have nearly identical appearance and functionality as html builds, including sphinx.ext.autodoc cross-references!
📋 Features
sphinx_readme adds support for the following sphinx and docutils directives and features:
sphinx.ext.autodoc cross-references (:mod:, :class:, :meth:, :func:, and :attr:)
Standard cross-reference roles (:doc: and :ref:)
Generic and Specific Admonitions
Only directives
Toctrees
Rubrics
Images
⚙ Installation
Install using pip:
pip install sphinx-readme
Add the extension to your conf.py:
extensions = [
'sphinx_readme',
]
🔧 Configuration
Please see Extension Configuration for full documentation on configuration variables
Mandatory conf.py Values
- html_context
A dictionary containing info about your repository (html_context)
Type: dict
At minimum, the username and repository name must be specified
Please see HTML Context Settings to determine the correct dictionary keys for your hosting platform
- html_baseurl
The base URL which points to the root of the HTML documentation (html_baseurl)
Type: str
- readme_src_files
An individual or list of rst files to parse
Type: Union[str, List]
📢 Important |
---|
Filepaths should be specified relative to the source directory |
- readme_docs_url_type
The documentation source to link to when resolving autodoc cross-references
Type: str
Must be either "code" or "html"
"code": uses sphinx.ext.linkcode to replace references with links to highlighted source code
Example: parse_intersphinx_nodes()
"html": replaces references with links to HTML documentation entries
Example: parse_intersphinx_nodes()
📝 Note |
---|
If set to code, then
|
Sample conf.py
extensions = [
"sphinx_readme",
]
html_context = {
'display_github': True,
'github_user': 'TDKorn',
'github_repo': 'sphinx-readme',
}
html_baseurl = "https://sphinx-readme.readthedocs.io/en/latest"
readme_src_files = "README.rst"
readme_docs_url_type = "code"
📢 Important |
---|
For platforms that don’t support the raw directive (PyPi, GitLab, and BitBucket), be sure to disable readme_raw_directive:
|
📚 Documentation
Full documentation can be found on ReadTheDocs
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
File details
Details for the file sphinx-readme-0.2.0.tar.gz
.
File metadata
- Download URL: sphinx-readme-0.2.0.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d25e2666c13df90be4b291fec6c97efa1478d96f1b616ec1a68ede2e6c846131 |
|
MD5 | 1921f825e8b2c67cc410bbf152c6c0c0 |
|
BLAKE2b-256 | b8a6aa9330c7b7be5312be200c26435495d0020cfa3ce42143e47a9421262762 |
File details
Details for the file sphinx_readme-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: sphinx_readme-0.2.0-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9006377be35b291151e81e74eb3bb6ae99f9dcdaf12868eeb3b13e52b957172 |
|
MD5 | edc43cec77fb0bf01958d7a3e331c49a |
|
BLAKE2b-256 | e3d742f9545d9ba80222df261f0e180375e3a3b2d68f233869918c9851d6d520 |