1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-08 00:16:29 +02:00

No longer has horizontal rules between gallery items

This commit is contained in:
Chris Palmer
2019-06-11 12:50:52 +01:00
parent 85e1985f1a
commit 419cadb7ec
2 changed files with 3 additions and 10 deletions

View File

@@ -67,9 +67,9 @@ def gallery(force):
match = re.match(r"^(#+).*$", line)
if match:
line = '#' + line
print(line[:-1], file = output_file)
if line == '---\n':
break;
print(line[:-1], file = output_file)
else:
print(Fore.MAGENTA + "Can't find", document, Fore.WHITE);
with open(target_dir + "/readme.html", "wt") as html_file: