From 4cb3231602eb11b872bc90d947c49dbb2e76d1a7 Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Sat, 29 Jul 2023 22:28:36 -0400 Subject: [PATCH] Convert README from Markdown to Org --- README.md | 21 --------------------- README.org | 17 +++++++++++++++++ _config.ts | 2 +- 3 files changed, 18 insertions(+), 22 deletions(-) delete mode 100644 README.md create mode 100644 README.org diff --git a/README.md b/README.md deleted file mode 100644 index 1e382eb..0000000 --- a/README.md +++ /dev/null @@ -1,21 +0,0 @@ -# Foster Hangdaan's Personal Website - -Visit the website at `https://www.fosterhangdaan.com`. - -## Getting started - -Run the development server: - -``` sh -deno task serve -``` - -To build: - -``` sh -deno task build -``` - -## Fonts & Icons - -Fonts and icons are from [Nerd Fonts](https://www.nerdfonts.com/) - v3.0.2. diff --git a/README.org b/README.org new file mode 100644 index 0000000..c6df658 --- /dev/null +++ b/README.org @@ -0,0 +1,17 @@ +#+title: Foster Hangdaan's Personal Website +#+author: Foster Hangdaan +#+email: foster@hangdaan.email + +* Getting Started + +Run the development server: + +#+begin_example +deno task serve +#+end_example + +To build: + +#+begin_example +deno task build +#+end_example diff --git a/_config.ts b/_config.ts index 402a571..956ea3d 100644 --- a/_config.ts +++ b/_config.ts @@ -9,7 +9,7 @@ const site = lume({ }, }); -site.ignore("README.md", "LICENSE.txt"); +site.ignore("README.md", "README.org", "LICENSE.txt"); site.copy("static", ".");