From b1321e4e5ce7c9675de2ec62488a576bf098fdb4 Mon Sep 17 00:00:00 2001 From: manfromhuh Date: Thu, 30 Jun 2022 09:07:59 -0400 Subject: [PATCH] Update README.md --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index e69de29..baeed67 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,22 @@ +# simple_blog_cms + +A Content Management System (CMS) for [simple_blog](https://20xd6.net/git/20xd6/simple_blog). + +## Process + +1. Find the article to publish. + * This can be from a given path or by parsing the current directory for MarkDown files. +2. Find the article title. +3. Assembles a path to publish the article to from the current month, year, and title. + * The title has all spaces replaced with `_` and a numeral appended to the front for proper sorting. +4. The `index.php` located in the common files directory is then symlinked to all the directories down to the new article path. +5. Adds a date-stamp to the top of the article. +6. Copies all images to the appropriate folder under the publishing path. +7. Adds a file named `tags` to the publishing directory. This is parsed by simple_blog to display tags at the bottom of the page. + +## TODO + +- [ ] Tagging + - [ ] Update the `tags.csv` file + - [ ] Add a file named `tags` to the article directory +- [ ] Publish from compressed file \ No newline at end of file