fun improvements #1

Merged
GKaszewski merged 21 commits from fun into main 2026-03-31 00:50:17 +00:00
Showing only changes of commit 71c1c49e8f - Show all commits

View File

@@ -19,7 +19,7 @@ export interface PostData {
content: string;
readingTime: string;
headings: Heading[];
wip?: boolean;
wip: boolean;
}
export interface PostMeta {
@@ -28,7 +28,7 @@ export interface PostMeta {
title: string;
description: string;
readingTime: string;
wip?: boolean;
wip: boolean;
}
function extractHeadings(content: string): Heading[] {