Commit 793e4734 authored by Stefan Behnel's avatar Stefan Behnel

include PDF-Builder in Sphinx conf (if installed)

parent 0f6eb255
...@@ -31,7 +31,17 @@ highlight_language = 'cython' ...@@ -31,7 +31,17 @@ highlight_language = 'cython'
# Add any Sphinx extension module names here, as strings. They can be extensions # Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['ipython_console_highlighting', 'cython_highlighting', 'sphinx.ext.pngmath', 'sphinx.ext.todo', 'sphinx.ext.intersphinx'] extensions = [
'ipython_console_highlighting',
'cython_highlighting',
'sphinx.ext.pngmath',
'sphinx.ext.todo',
'sphinx.ext.intersphinx'
]
try: import rst2pdf
except ImportError: pass
else: extensions.append('rst2pdf.pdfbuilder')
# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates'] templates_path = ['_templates']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment