diff --git a/docs/test.html b/docs/test.html
new file mode 100644
index 0000000..a9646b5
--- /dev/null
+++ b/docs/test.html
@@ -0,0 +1,86 @@
+ <!DOCTYPE html>
+ <html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <title>test.md - Converted to HTML</title>
+ </head>
+ <body>
+ <h2>Content Organisation</h2>
+ <ul>
+ <li>Directory Structure:</li>
+ <li><code>post/</code>: Blog posts (creates <code>/post/post-name/</code> URLs)</li>
+ <li>Other directories: Regular pages (creates <code>/page-name/</code> URLs). <code>/about/</code> is included by default as an example</li>
+ <li><code>theme/</code>: main HTML templates</li>
+ <li><code>public/</code>: Output directory</li>
+ <li><code>static/</code>: Static files and directories, e.g. <code>/img</code>, <code>/css/main.css</code></li>
+ </ul>
+ <h2>Front Matter</h2>
+ <p><strong>title:</strong> the title which appears in <code><title></code> meta data and optionally at the top of pages.<br />
+ <strong>summary:</strong> the data which appears in <code><meta name="description"</code> and optionally as a summary of posts on index pages.<br />
+ <strong>description:</strong> alias of summary, as above.<br />
+ <strong>image:</strong> this drives any 'top of post' image (optional).<br />
+ <strong>alt:</strong> the alt-text of the 'top of post' image. If not specified, the default alt-text is 'title:' front matter.<br />
+ <strong>caption:</strong> the caption of the 'top of post' image (optional). Displayed below the image in a <code><div class="article-image-caption"></code>.<br />
+ <strong>tags:</strong> comma-separated post tags, e.g. <code>tags: tag1, tag2</code>. These will be passed to the bottom of the post in a tag cloud format.<br />
+ <strong>date:</strong> the date in ISO 8601 standard <code>YYYY-MM-DD</code>. Time is optional but recommended to aid correct pagination order. </p>
+ <p>Compliant date format examples:
+ * Date only:
+ * <code>2025-09-17</code></p>
+ <ul>
+ <li>With seconds:</li>
+ <li><code>2025-09-17T14:35:20</code></li>
+ <li><code>2025-09-17T14:35:20Z</code></li>
+ <li><code>2025-09-17T14:35:20+02:00</code></li>
+ <li>
+ <p><code>2025-09-17T14:35:20-05:00</code></p>
+ </li>
+ <li>
+ <p>Without seconds:</p>
+ </li>
+ <li><code>2025-09-17T14:35</code></li>
+ <li><code>2025-09-17T14:35Z</code></li>
+ <li><code>2025-09-17T14:35+02:00</code></li>
+ <li>
+ <p><code>2025-09-17T14:35-05:00</code></p>
+ </li>
+ <li>
+ <p>Hour only:</p>
+ </li>
+ <li><code>2025-09-17T14</code></li>
+ <li><code>2025-09-17T14Z</code></li>
+ <li><code>2025-09-17T14+02:00</code></li>
+ <li><code>2025-09-17T14-05:00</code></li>
+ </ul>
+ <p>Additionally, fractional seconds (e.g. <code>.123</code>) can be added but these are removed during build.</p>
+ <p>When no date is provided, the script defaults to the current build time.<br />
+ <strong>Note</strong>: the date/time <em>will</em> change at every (re)build, so add a date.</p>
+ <h2>User Configuration</h2>
+ <p><strong>POSTS_PER_PAGE = 10</strong><br />
+ Number of posts to display per page on index and archive pages.</p>
+ <p><strong>SITE_URL = "https://example.com"</strong><br />
+ The complete base URL of the site, including protocol (https://).</p>
+ <p><strong>SITE_TITLE = "My Site"</strong><br />
+ Default site title used in page titles and when no page title is provided.</p>
+ <p><strong>SITE_DESC = "Site Description"</strong><br />
+ Default site description used in meta tags and when no page description is provided.</p>
+ <p><strong>CONTENT_LANGUAGE = "en"</strong><br />
+ The language code for the site's content (used in HTML lang attribute).</p>
+ <p><strong>SITE_LOGO = "/img/logo.png"</strong><br />
+ Absolute URL path to the site's logo image (used in the optional schema.org metadata).</p>
+ <p><strong>THEME = "basic"</strong><br />
+ The theme to use from the <code>/themes/</code> directory. Must match exactly the name of a theme folder.</p>
+ <p><strong>PAGINATION = "numbers"</strong><br />
+ The options are "numbers" or "direction".<br />
+ This option controls the type of pagination style to output. "numbers" produces a URL chain of page numbers and "direction" is only a "next" & "previous" link.</p>
+ <p><strong>ENABLE_SEARCH = False</strong><br />
+ The options are "True" or "False".<br />
+ An optional search feature which uses lunr.js. Index is output to root folder as 'search-index.json' for integration.</p>
+ <p><strong>GENERATE_ARCHIVE = "yes"</strong><br />
+ The options are "yes" or "no"
+ Generates an archive page based on the archive.html template.</p>
+ <p><strong>ARCHIVE_URL = "archive"</strong><br />
+ The desired URL of the archive output. Someone might prefer '/blog' so here is the place to change it.</p>
+ <p><strong>TAGS_PAGE_TITLE = "tags and categories"</strong><br />
+ Configurable Tags index page title which can appear on-page and will populate the <title> meta data.</p>
+ </body>
+ </html>
\ No newline at end of file