From cef18ef1fcfa2571166215013e5461919749a56d Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Mon, 10 Jan 2022 15:25:11 -0600 Subject: [PATCH] Add sections to the document tree Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- nfdocs-parser.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nfdocs-parser.py b/nfdocs-parser.py index 78d9510..5393467 100755 --- a/nfdocs-parser.py +++ b/nfdocs-parser.py @@ -118,8 +118,12 @@ class NFDocs(Directive): io_list += self.params_to_list(io) io_section += io_list proc_section += io_section + self.state_machine.document.note_implicit_target(io_section) + self.state_machine.document.note_implicit_target(proc_section) block_section += proc_section + print(block_section) + self.state_machine.document.note_implicit_target(block_section) return_nodes.append(block_section) return return_nodes