TEST
Why I built this
Cause I need to prove my mental might against Stephen Barstys
Syntax highlighting
Fenced blocks are highlighted at build time:
interface Post {
date: string;
slug: string;
title: string;
}
export function getPost(slug: string): Post | undefined {
return posts.find((p) => p.slug === slug);
}npm run build && git pushA block with no language tag stays plain:
just some text