Ignore files starting with _

This commit is contained in:
Glenn Y. Rolland 2021-03-09 09:42:13 +01:00
parent d9a7954c18
commit 11a96f1b87

View file

@ -46,6 +46,10 @@ class TocBuilder:
if dname == "":
continue
# skip files starting with '_'
if bname_split[0][0] == '_':
continue
# skip index files
if bname_split[0] == 'index':
continue