Skip to content

Commit

Permalink
Prevent new headers from being added to table of contents
Browse files Browse the repository at this point in the history
  • Loading branch information
alexiswl committed Jun 26, 2024
1 parent 994dc08 commit 442c487
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ def add_inputs_template_section(self):

# Yaml header
self.md_file_obj.new_header(
level=3, title="Yaml"
level=3, title="Yaml", add_table_of_contents="n"
)

self.md_file_obj.new_line("<details>")
Expand All @@ -627,7 +627,7 @@ def add_inputs_template_section(self):

# JSon Template
self.md_file_obj.new_header(
level=3, title="Json"
level=3, title="Json", add_table_of_contents="n"
)

self.md_file_obj.new_line("<details>")
Expand Down

0 comments on commit 442c487

Please sign in to comment.