Skip to content

Commit

Permalink
Add sphinx_markdown_tables to docs extensions
Browse files Browse the repository at this point in the history
Needed in order to use Markdown tables with Sphinx.
https://github.com/ryanfox/sphinx-markdown-tables

Note that the extension must be pip-installed in order to build the HTML
correctly.
  • Loading branch information
fepegar committed Jun 29, 2018
1 parent 235ec9f commit 1e85849
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ def setup(app):
'sphinx.ext.imgmath',
'sphinx.ext.napoleon',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode']
'sphinx.ext.viewcode',
'sphinx_markdown_tables',
]
autodoc_default_flags = ['members', 'show-inheritance']
autodoc_member_order = 'bysource'

Expand Down Expand Up @@ -256,6 +258,3 @@ def setup(app):
author, 'NiftyNet', 'One line description of project.',
'Miscellaneous'),
]



0 comments on commit 1e85849

Please sign in to comment.