From 18aed71c18ecf8fd4c866208f47288e82e069347 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Mon, 26 Jun 2023 19:40:15 -0600 Subject: [PATCH] Remove author --- posts/2022-08-01_thoughts-on-neovim.md | 1 - posts/2023-01-04_advent-of-wasm.md | 1 - utils/post.ts | 2 -- 3 files changed, 4 deletions(-) diff --git a/posts/2022-08-01_thoughts-on-neovim.md b/posts/2022-08-01_thoughts-on-neovim.md index 13d5c33..09c2791 100644 --- a/posts/2022-08-01_thoughts-on-neovim.md +++ b/posts/2022-08-01_thoughts-on-neovim.md @@ -1,7 +1,6 @@ --- title: Thoughts on Neovim subtitle: Who even needs an IDE anyways? -author: rose --- ## Why I'm using Neovim diff --git a/posts/2023-01-04_advent-of-wasm.md b/posts/2023-01-04_advent-of-wasm.md index 12a48c8..055b5b3 100644 --- a/posts/2023-01-04_advent-of-wasm.md +++ b/posts/2023-01-04_advent-of-wasm.md @@ -1,7 +1,6 @@ --- title: Advent of Wasm subtitle: Now with 87% more pain -author: rose --- So the last few years I have done Advent of Code off and on. Sometimes diff --git a/utils/post.ts b/utils/post.ts index 0d44ebe..86c992f 100644 --- a/utils/post.ts +++ b/utils/post.ts @@ -8,7 +8,6 @@ export interface Post { date: Date, title: string, subtitle?: string, - author: string, body: string, unlisted: boolean, } @@ -55,7 +54,6 @@ export async function loadSinglePage(slug: string): Promise { date: new Date(postMatch.groups.date), title: data.title, subtitle: data.subtitle, - author: data.author, unlisted: data.unlisted === 'true', body }