From 6d7567de01bc5b9cdaa67db79652d4d902bd5762 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 10 Nov 2014 00:47:20 +0100 Subject: [PATCH] enable todo extension --- source/conf.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/conf.py b/source/conf.py index fb37071c5..2bee69683 100644 --- a/source/conf.py +++ b/source/conf.py @@ -334,6 +334,12 @@ epub_exclude_files = ['search.html'] # on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org on_rtd = os.environ.get('READTHEDOCS', None) == 'True' +#-- Options for todo + +todo_include_todos = True + +#-- include template if not on RTD + if not on_rtd: # only import and set the theme if we're building docs locally import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme'