Skip to content

Commit a8e9279

Browse files
TejeshTejesh
Tejesh
authored and
Tejesh
committed
Update index_updater.py
1 parent 3e7f8fd commit a8e9279

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

index_updater.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@
1616
curr_folder = os.path.basename(root)
1717

1818
for name in files:
19-
if name.endswith('.py') and not name == '__init__py' and not dirs:
19+
if name.endswith('.py') and not name == '__init__.py' and not dirs:
2020
curr_files.append(name)
2121

2222
# If we have files, write "index.md"
2323
if curr_files:
2424
with open(os.path.join(root, 'index.md'), mode='w') as md_file:
2525
md_file.write('# Index of {}\n\n'.format(curr_folder))
2626
for line in curr_files:
27-
md_file.write('* ' + line + '\n')
27+
file_name = line.split('.')[0].replace('_',' ').title()
28+
md_file.write('* [' + file_name + '](' +line + ')\n')

0 commit comments

Comments
 (0)