Site Rebuild with Svelte
I wanted to update the previous version of the blog (mdworld-jackson) built on SSG (Static Site Generation) with Gatsby. It was several majors of Gatsby behind and contained several workarounds that would take a lot of time to figure out, so I took it as an opportunity to move to a new stack. SSG with SvelteKit. Shying away from runtime component libraries or CSS sets, the target is to make a package that is a small as possible.
Recently I built codestar-website-next, a blog-like site built on SSG with NextJS. This was such a breeze, that I wanted to look at a similar SSG driven stack for this new theme. I wanted to look into Svelte for some time, so after experimenting for a couple of hours I landed on a new stack with Svelte, SvelteKit and Vite.
An important requirement to keep from the previous theme, is to support code in Markdown. In Gatsby it is possible to use React in Markdown with MDX
, and Svelte supports a similar way of working with MDsveX
:
# This is a markdown heading
This is markdown text
<script>
import Lightbox from '$lib/components/Lightbox/Lightbox.svelte'
</script>
<Lightbox imgPath="/lightbox/mfe/module-federation.svg" imgTitle="Module Federation" />
Which is rendered as a clickable image:
See the code for the Lightbox
component in the mdworld-ross repo.
The only missing technology from my wishlist was Deno, because of my preference for TypeScript. My first SSG attempt deno-ssg-blog used a library that was still experimental, but now there is Deno Fresh. It was too much time to figure that out now when combining it with Svelte, so I will keep that for another experiment.
For more information about the current stack, see the about page.
Old themes
Static versions of the 3 last themes still run here (2010-2013), here (2013-2018), and here (2018-2023).