I would like to add to my sphinx documentation a menu, "todo items", which should contain all the methods of my project containing some todo items, like this:
""":todo: Fonction à implémenter"""
I would like to display the name of the class, the name of the concerned method(s), the number of the line and its content.
I found something that could be relevant : http://www.pythondoc.com/sphinx/ext/autodoc.html#skipping-members, but it only filter methods, and does not seem to be linked to the required informations(line numbers and line contents).
Is there a way to achieve this? Do you know some useful links?