Skip to content

Commit

Permalink
Fix heading level in update_readme.py
Browse files Browse the repository at this point in the history
  • Loading branch information
itslijohnny committed Mar 24, 2024
1 parent 9a19c9c commit a86afb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _doc_builder/update_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def genereate_note_list(nodes, level_std, _structure):
continue
file_nodes.append(child_node)

_level = '##'*(level-1)
_level = '#'*(level)
_structure.append(f'{_level} {node["title"]}')
if intro:
_structure.append(intro.strip() + '\n')
Expand Down

0 comments on commit a86afb9

Please sign in to comment.