Skip to content

About this site

This site is maintained in a folder of markdown files and generated by Astro Starlight.

Starlight

The information below is outdated

I have upgraded to the tools above.

Docus

It’s easy to make a site like this

Just use this template on GitHub and deploy it to Vercel.

Configure Syntax highlighting for this site

The list of available languages is here:

Add the language to nuxt.config.ts

1
export default defineNuxtConfig({
2
// https://github.com/nuxt-themes/docus
3
extends: '@nuxt-themes/docus',
4
devtools: { enabled: true },
5
6
modules: [
7
// Remove it if you don't use Plausible analytics
8
// https://github.com/nuxt-modules/plausible
9
],
10
content: {
11
highlight: {
12
preload: ['rust', 'csharp', 'c', 'go', 'sql', 'python', 'haskell'],
13
}
14
}
15
})