From 89dc32dca0de750f90a5a6a67846700d99ae42b9 Mon Sep 17 00:00:00 2001 From: Stefan Tatschner Date: Fri, 29 May 2015 14:27:10 +0200 Subject: [PATCH] Enable TODO extension This extension enables the usage of .. todo:: blocks. This is quite useful because we can encourage people to work on particular sections of the documentation. --- conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/conf.py b/conf.py index d32d68f13..09394cd3d 100644 --- a/conf.py +++ b/conf.py @@ -32,7 +32,7 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = [] +extensions = ['sphinx.ext.todo'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -97,6 +97,8 @@ pygments_style = 'sphinx' # If true, keep warnings as "system message" paragraphs in the built documents. #keep_warnings = False +# Show .. todo:: block. +todo_include_todos = True # -- Options for HTML output ----------------------------------------------