Fenris Punk | My first zola post

Back up

Table of Contents

Posted on 2024-12-08

Update Notes

As of December 22, 2024 most website content finished migrating to zola.

As of December 27, 2024 the entire site should be done migrating, with the possible exception of what might constitute some kind of a conversion bug.

Original Post

UPDATED: 2024-12-27

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