Convert README from Markdown to Org
This commit is contained in:
parent
9c5329e04f
commit
4cb3231602
3 changed files with 18 additions and 22 deletions
21
README.md
21
README.md
|
@ -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.
|
17
README.org
Normal file
17
README.org
Normal file
|
@ -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
|
|
@ -9,7 +9,7 @@ const site = lume({
|
|||
},
|
||||
});
|
||||
|
||||
site.ignore("README.md", "LICENSE.txt");
|
||||
site.ignore("README.md", "README.org", "LICENSE.txt");
|
||||
|
||||
site.copy("static", ".");
|
||||
|
||||
|
|
Loading…
Reference in a new issue