improvements

2020
Dawid J. Kubis 4 years ago
parent 10ec3df58c
commit b0dd677cd5

@ -1,4 +1,11 @@
all: code site
site:
python3 site_gen.py
.PHONY: site
code:
python3 code_gen.py
.PHONY: site code

@ -41,15 +41,16 @@ def path_dict(files):
di[x].append(y)
return di
prefix = []
if os.path.exists('PREFIX.md'):
with open('PREFIX.md') as p:
prefix = p.readlines()
files = sorted([i[2:] for i in get_mds('.') if i != './README' and i != './PREFIX'])
with open('README.md', 'w') as f:
to_write = mkformat(files)
to_write = [i + '\n' for i in to_write]
to_write = prefix + to_write
f.writelines(to_write)
if __name__=='__main__':
prefix = []
if os.path.exists('PREFIX.md'):
with open('PREFIX.md') as p:
prefix = p.readlines()
files = sorted([i[2:] for i in get_mds('.') if i != './README' and i != './PREFIX'])
with open('README.md', 'w') as f:
to_write = mkformat(files)
to_write = [i + '\n' for i in to_write]
to_write = prefix + to_write
f.writelines(to_write)

Loading…
Cancel
Save