Sphinx extension to use with Recommonmark to fix links to rst from md, links to md from rst, and links to embedded files and dirs.
Project description
Sphinx Markdown Extension
This extension fixes or improves how Sphinx handles links related to Markdown
when it generates the HTML site. It assumes you are using the recommonmark
extension. It's a good idea to use sphinx_markdown_tables
as well.
Contents
What it does
-
Markdown files: Converts references to Markdown files that include anchors.
[configuration options](autotest.md#configuration-options)
-
reST files: Fixes explicit links to Markdown files.
`Google Cloud Engine <gce.md>`__
-
Markdown files: Fixes references to reST files.
[Application examples](examples/readme.rst)
-
Markdown files: Fixes links to files and directories within the GitHub repo.
[Makefile](/Makefile) [deploy/kustomize](/deploy/kustomize)
Links to files can be fixed one of two ways, which can be set in the conf.py.
baseBranch = "devel" useGitHubURL = True commitSHA = getenv('GITHUB_SHA') githubBaseURL = "https://github.com/intelkevinputnam/pmem-csi/"
If
useGitHubURL
is set to True, it will try to create links based on yourgithubBaseURL
and the SHA for the commit to the GitHub repo determined by the GitHub workflow on merge). If there is no SHA available, it will use the value ofbaseBranch
.If
useGitHubURL
is set to False, it will copy the files to the HTML output directory and provide links to that location.NOTE: Links to files and directories should use absolute paths relative to the repo (see Makefile and deploy/kustomize above). This will work both for the Sphinx build and when viewing in the GitHub repo.
Links to directories are always converted to links to the GitHub repository.
How to use it
-
Install the sphinx_md extension:
pip3 install sphinx_md
-
Add
sphinx_md
to the extensions in yourconf.py
:extensions = ['sphinx_md', ...]
-
If you want to use GitHub commit links, add the entire code snippet to your
conf.py
:from os import getenv sphinx_md_useGitHubURL = True baseBranch = "devel" commitSHA = getenv('GITHUB_SHA') githubBaseURL = 'https://github.com/' + (getenv('GITHUB_REPOSITORY') or '<your_group/your_project>') + '/' githubFileURL = githubBaseURL + "blob/" githubDirURL = githubBaseURL + "tree/" if commitSHA: githubFileURL = githubFileURL + commitSHA + "/" githubDirURL = githubDirURL + commitSHA + "/" else: githubFileURL = githubFileURL + baseBranch + "/" githubDirURL = githubDirURL + baseBranch + "/" sphinx_md_githubFileURL = githubFileURL sphinx_md_githubDirURL = githubDirURL
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
Hashes for sphinx_md-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47665513fa4b5744714f8d43e000f85283e596d7b4c1a99a54da3c6a96cb115c |
|
MD5 | 46ddf8da8c3c7e3fbdfe3e4a3f62cd38 |
|
BLAKE2b-256 | 9bb121cb66dcc1cdaa1d9fa903140bcba3abeae03707f220355a3b5e18c5aa4e |