diff options
| author | Robert Lehmann <mail@robertlehmann.de> | 2012-02-29 18:29:16 +0100 |
|---|---|---|
| committer | Robert Lehmann <mail@robertlehmann.de> | 2012-02-29 18:29:16 +0100 |
| commit | 70a87fc4d19939e8bf9836e3ffb6fb60fcb07dcd (patch) | |
| tree | a836b007d6a200b6861f4a163a286ef59f6bc3fc | |
| parent | 8707509d523c65a0994c1c30572a959698f8f90c (diff) | |
| download | sphinx-70a87fc4d19939e8bf9836e3ffb6fb60fcb07dcd.tar.gz | |
Trigger rebuild when todo visibility is toggled (mentioned in #884).
| -rw-r--r-- | sphinx/ext/todo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py index 4116a2d5..43f073db 100644 --- a/sphinx/ext/todo.py +++ b/sphinx/ext/todo.py @@ -154,7 +154,7 @@ def depart_todo_node(self, node): self.depart_admonition(node) def setup(app): - app.add_config_value('todo_include_todos', False, False) + app.add_config_value('todo_include_todos', False, 'html') app.add_node(todolist) app.add_node(todo_node, |
