From f3dd29629045f28db8b2194a47673fa9e1104f13 Mon Sep 17 00:00:00 2001 From: Elijah Gregg Date: Mon, 1 Mar 2021 06:55:50 -0700 Subject: [PATCH] Clarify certain 'quirks' about script-generated files --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6c5ce99..70f5cd5 100644 --- a/README.md +++ b/README.md @@ -18,3 +18,5 @@ This script also creates three files in the specified HTML directory: * style.css: This file controls the styling of the generated website. * footer.html: Specifies a site-wide footer * header.html: Specifies a site-wide header + +After the first run these files will not be touched by the script again (unless they are deleted), thereby allowing the user to do whatever they like with them. Note that HTML has no way of `source`ing files, so the header and footer are inserted into the HTML when the script is run, meaning user-created files will not be affected and the changes to the header and footer will not show until the script is run again.