From 9a8e4dcc20b84e55eafab6e7247bc375e962d148 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 3 Jul 2017 01:47:24 +0200 Subject: [PATCH] Fix HTML An img element must have an alt attribute (and a closing tag) --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 1645b0ac..e427623a 100755 --- a/build.py +++ b/build.py @@ -496,7 +496,7 @@ for header in fileStruct: if level > 0: if 'include' in header: srcFile = open('include/' + header['include']) - githubedit = '' + githubedit = 'Edit on GitHub' content = srcFile.read() srcFile.close()