Skip to content Skip to sidebar Skip to footer

Sphinx And Markdown .md Links

I'm trying to convert Markdown files to html using Sphinx but am having trouble getting [links](another.md) to be translated to links, rather

Solution 1:

recommonmark==0.5.0.dev0 solves this problem.

conf.py configuration

extensions = [
    # other'recommonmark',
]

source_suffix = ['.rst', '.md']

pip configuration (requirements.txt)

sphinx==1.8.2
# recommonmark==0.5.0.dev0git+https://github.com/rtfd/recommonmark

Please refer to https://www.sphinx-doc.org/en/master/usage/markdown.html if you need more details.

Post a Comment for "Sphinx And Markdown .md Links"