Skip to content

Commit

Permalink
Do not include man pages in help
Browse files Browse the repository at this point in the history
  • Loading branch information
milasudril committed Mar 2, 2021
1 parent b785339 commit a7c6448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/make_doc_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_title_dir(dir):
class Entry:
def __init__(self, path):
if (path.name == 'index.md' or path.name == 'README.md' or path.name == '.git'
or path.name.startswith('__')):
or path.name.startswith('__') or path.name.endswith('.man.md')):
self.page = None
self.title = None
self.children = []
Expand Down

0 comments on commit a7c6448

Please sign in to comment.