Fenris Punk | My first zola post

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.

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 = ""
+++