diff --git a/src/build.py b/src/build.py index 4d9235a..f49f8d6 100644 --- a/src/build.py +++ b/src/build.py @@ -372,7 +372,7 @@ def build_all(path_prefix, lexicon_name): l = len(articles) for idx in range(l): article = articles[idx] - with open(pathto("article", article.title_filesafe + ".html"), "w", encoding="utf8") as f: + with open(pathto("article", article.title_filesafe + ".html"), "w", encoding="utf-8") as f: content = article.build_default_content() citeblock = article.build_default_citeblock( None if idx == 0 else articles[idx - 1], @@ -391,19 +391,19 @@ def build_all(path_prefix, lexicon_name): # Write default pages print("Writing default pages...") - with open(pathto("contents", "index.html"), "w", encoding="utf8") as f: + with open(pathto("contents", "index.html"), "w", encoding="utf-8") as f: f.write(build_contents_page(articles, config)) print(" Wrote Contents") - with open(pathto("rules", "index.html"), "w", encoding="utf8") as f: + with open(pathto("rules", "index.html"), "w", encoding="utf-8") as f: f.write(build_rules_page(config)) print(" Wrote Rules") - with open(pathto("formatting", "index.html"), "w", encoding="utf8") as f: + with open(pathto("formatting", "index.html"), "w", encoding="utf-8") as f: f.write(build_formatting_page(config)) print(" Wrote Formatting") - with open(pathto("session", "index.html"), "w", encoding="utf8") as f: + with open(pathto("session", "index.html"), "w", encoding="utf-8") as f: f.write(build_session_page(config)) print(" Wrote Session") - with open(pathto("statistics", "index.html"), "w", encoding="utf8") as f: + with open(pathto("statistics", "index.html"), "w", encoding="utf-8") as f: f.write(build_statistics_page(articles, config)) print(" Wrote Statistics") diff --git a/src/resources/entry-page.html b/src/resources/entry-page.html index 3b08063..cf65ece 100644 --- a/src/resources/entry-page.html +++ b/src/resources/entry-page.html @@ -2,6 +2,7 @@ {title} | {lexicon} + diff --git a/src/utils.py b/src/utils.py index af15187..ea47974 100644 --- a/src/utils.py +++ b/src/utils.py @@ -38,7 +38,7 @@ def titlesort(s): def load_resource(filename, cache={}): """Loads files from the resources directory with caching.""" if filename not in cache: - with open(os.path.join("src", "resources", filename), "r", encoding="utf8") as f: + with open(os.path.join("src", "resources", filename), "r", encoding="utf-8") as f: cache[filename] = f.read() return cache[filename]