From 3a4cd785556a158c74142249f3906faa0ea46806 Mon Sep 17 00:00:00 2001 From: Rosia E Evans Date: Sat, 28 Oct 2023 21:54:52 +0100 Subject: [PATCH] Update README.md --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b9b3ba7..ee9a320 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,11 @@ Currently using [md4c](https://github.com/mity/md4c) for parsing and [lighttpd]( I've mostly been using this as a chance to explore my thoughts on low-level-ish, low power code. Because of this I've been trying to use the simplest fastest libraries I can find and create a -very bare-bones implementation that does the bare minimum. Ideally as a finished product this code -should simply take md files in and produce html files in the style of my site that it hosts along -with one or two other pages. +very bare-bones implementation that just does the minimum it needs to. -Find the side at [www.rosia.me](https://rosia.me) +As a finished product this code uses md4c to parse markdown and combines it with a template and on the side generates a navbar of all the existing pages according to their filesystem and puts that in each template too. +Pages can take some small settings and properties on their first line in the form of single chars (e.g. P to set to private while a page is still being worked on). + +I'm really proud of this, its not clean but I feel like its a project I set myself a spec for and stuck really well to. + +Find the site at [www.rosia.me](https://rosia.me) and a blog post about its creation [here](https://www.rosia.me/ThisSite.html)