feat: update-toc handles files in root directory
This commit is contained in:
parent
1e7c0ed279
commit
777c493b74
1 changed files with 12 additions and 8 deletions
|
@ -51,16 +51,16 @@ class TocBuilder:
|
||||||
bname_split = os.path.splitext(bname)
|
bname_split = os.path.splitext(bname)
|
||||||
dname = os.path.dirname(rel_path)
|
dname = os.path.dirname(rel_path)
|
||||||
|
|
||||||
|
# skip files in docs/ root
|
||||||
|
# if dname == "":
|
||||||
|
# continue
|
||||||
|
|
||||||
# skip files starting with '_'
|
# skip files starting with '_'
|
||||||
#if bname_split[0][0] == '_':
|
#if bname_split[0][0] == '_':
|
||||||
if self.is_masked(rel_path):
|
if self.is_masked(rel_path):
|
||||||
print("Found {} which is masked. Ignoring".format(fn))
|
print("Found {} which is masked. Ignoring".format(fn))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# skip files in docs/ root
|
|
||||||
# if dname == "":
|
|
||||||
# continue
|
|
||||||
|
|
||||||
# skip index files
|
# skip index files
|
||||||
if bname_split[0] == 'index':
|
if bname_split[0] == 'index':
|
||||||
print("Found {} which is an index file. Ignoring".format(fn))
|
print("Found {} which is an index file. Ignoring".format(fn))
|
||||||
|
@ -91,7 +91,11 @@ class TocBuilder:
|
||||||
else:
|
else:
|
||||||
lines.append(" - \"%s\":" % dname)
|
lines.append(" - \"%s\":" % dname)
|
||||||
|
|
||||||
lines.append(" - %s" % f)
|
if dname != "":
|
||||||
|
lines.append(" - %s" % f)
|
||||||
|
else:
|
||||||
|
lines.append(" - %s" % f)
|
||||||
|
|
||||||
return lines
|
return lines
|
||||||
|
|
||||||
class FileInjector:
|
class FileInjector:
|
||||||
|
|
Loading…
Reference in a new issue