-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(storage): fix docs for new sphinx version #103
Conversation
@@ -49,10 +50,6 @@ | |||
# Add any paths that contain templates here, relative to this directory. | |||
templates_path = ["_templates"] | |||
|
|||
# Allow markdown includes (so releases.md can include CHANGLEOG.md) | |||
# http://www.sphinx-doc.org/en/master/markdown.html | |||
source_parsers = {".md": "recommonmark.parser.CommonMarkParser"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you tell me more about this change? I see it's blocking your other PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM based on: https://github.com/readthedocs/recommonmark
@@ -38,6 +38,7 @@ | |||
"sphinx.ext.napoleon", | |||
"sphinx.ext.todo", | |||
"sphinx.ext.viewcode", | |||
"recommonmark", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found relevant information. Thanks for your patience on this PR.
https://github.com/readthedocs/recommonmark
# for Sphinx-1.4 or newer
extensions = ['recommonmark']
# for Sphinx-1.3
from recommonmark.parser import CommonMarkParser
source_parsers = {
'.md': CommonMarkParser,
}
source_suffix = ['.rst', '.md']
Fixes #100