Hello,
i want to develop a custom Sphinx extension, mentioned in another topic here.
I want to use the 'raw' node as basis, but sadly the ddocumentation for the raw node is not very extensive:
For a start i just want to know how i can debug Sphinx.
I created the following code snippet:
class ConfluencePageDirective(Directive):
def run(self):
confluence_text = GetConfluencePage()
raw_node = nodes.raw(confluence_text) #(text='This is the audi confluence plugin!')
return [raw_node]
Now i want to set a breakpoint at the line:
raw_node = nodes.raw(confluence_text) #(text='This is the audi confluence plugin!')
To look what is inside the raw node.
Which python command must i use, to start a sphinx build, so i can debug to this point?
I guess if I run Sphinx over the command line, there is no way to debug.
So far,
Dirk