Remove author

post/wasm-gol-2
Ashelyn Dawn 1 year ago
parent 22b57d775d
commit 18aed71c18

@ -1,7 +1,6 @@
--- ---
title: Thoughts on Neovim title: Thoughts on Neovim
subtitle: Who even needs an IDE anyways? subtitle: Who even needs an IDE anyways?
author: rose
--- ---
## Why I'm using Neovim ## Why I'm using Neovim

@ -1,7 +1,6 @@
--- ---
title: Advent of Wasm title: Advent of Wasm
subtitle: Now with 87% more pain subtitle: Now with 87% more pain
author: rose
--- ---
So the last few years I have done Advent of Code off and on. Sometimes So the last few years I have done Advent of Code off and on. Sometimes

@ -8,7 +8,6 @@ export interface Post {
date: Date, date: Date,
title: string, title: string,
subtitle?: string, subtitle?: string,
author: string,
body: string, body: string,
unlisted: boolean, unlisted: boolean,
} }
@ -55,7 +54,6 @@ export async function loadSinglePage(slug: string): Promise<Post | null> {
date: new Date(postMatch.groups.date), date: new Date(postMatch.groups.date),
title: data.title, title: data.title,
subtitle: data.subtitle, subtitle: data.subtitle,
author: data.author,
unlisted: data.unlisted === 'true', unlisted: data.unlisted === 'true',
body body
} }

Loading…
Cancel
Save