We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
a function to list all todos. ( yes, this description needs work )
def myFindTodos(editor, pwiki): todos=pwiki.wikiData.getTodos() editor.GotoLine(3) editor.SetSelectionEnd(editor.GetLength()) editor.ReplaceSelection("\n") for todo in todos: editor.AddText(str(todo[0])) editor.AddText(" ") editor.AddText(str(todo[1])) editor.AddText("\n")
Source: http://trac.wikidpad2.webfactional.com/wiki/DynamicTodoList
There was an error while loading. Please reload this page.