Skip to content

Commit

Permalink
Explicitly call recommonmark
Browse files Browse the repository at this point in the history
- on python 3, the code blocks in markdown files were failing, this
  makes them work again.
  • Loading branch information
ssteinbach committed May 21, 2020
1 parent 4c660a1 commit 5993d51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'recommonmark',
# uncomment the next line if you are writing in Google Napoleon docstrings
# 'sphinx.ext.napoleon'
]
Expand All @@ -39,7 +40,7 @@
templates_path = ['_templates']

source_parsers = {
'.md': 'recommonmark.parser.CommonMarkParser',
'.md': 'recommonmark.parser.CommonMarkParser',
}

# The suffix of source filenames.
Expand Down

0 comments on commit 5993d51

Please sign in to comment.