Add disqus extension to the config

This commit is contained in:
Roman Mogilatov 2017-02-28 21:56:55 +02:00
parent 4a575abbde
commit f90deae8f7

View File

@ -29,7 +29,8 @@ sys.path.insert(0, os.path.abspath('..'))
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.autodoc']
extensions = ['sphinx.ext.autodoc',
'sphinxcontrib.disqus']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@ -140,7 +141,7 @@ html_theme = 'default'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = []
html_static_path = ['_static']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
@ -298,3 +299,5 @@ texinfo_documents = [
#texinfo_no_detailmenu = False
autodoc_member_order = 'bysource'
disqus_shortname = 'python-dependency-injector'