Posted on 2024-12-08
UPDATED: 2024-12-09
This is my first blog post using zola. After a few years using a custom ssg, I'm migrating off to something more standard. I nearly chose pelican, but ultimately went with zola because it was easlier for me. They're nearly the same, except zola has defaults that are closer to what the original site had, so I've nearly been able to make a dropin replacement. Obviously pelican would have only been a bit more work.
I have a few comments.
- There are some breaking changes with the feeds.
- I've make some minor layout fixes.
- Many of the existing pages are being replaced with json to just hold the data. TBD I'll add some javascript that can load them and display whatever is helpful.
- The sitemap is an xml sitemap instead of an html sitemap.
- The Roadmap has moved back into the README.
- I will no longer support noexport heading tags in the playtests or in general. The original notes will now be public since it has been long enough since we played.
Removing the tags
find . -type f -name "*.org" -exec sed -i 's/:noexport://g' {} +
Converting the files
for f in *.org; do pandoc "$f" -s -o "${f%.org}.md"; done
Snippets
+++
title = ""
date = ""
description = ""
+++