owo what’s this
hi, this is an osu! themed blog that i made for my friend ronnyrun
nerd!
it’s made using sveltekit and uses markdown files as blog posts. the site is completely static, markdown filkes are rendered at build time using mdsvex.
it supports code syntax highlighting using prismjs, like so:
const a = 'test';
function test() {
console.log(a);
} it also supports mermaid diagrams, like so:
graph TD
A[Client] -->|HTTP Request| B(Load Balancer)
B --> C{Server Ready?}
C -->|Yes| D[SvelteKit App]
C -->|No| E[Error Page]
D --> F[(Database)] source code is available on github