diff options
-rw-r--r-- | README.md | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -1,2 +1,23 @@ | |||
1 | # webgen | 1 | # webgen |
2 | |||
2 | The static site generator for my site. | 3 | The static site generator for my site. |
4 | |||
5 | ## Requirements | ||
6 | |||
7 | [Janet](https://janet-lang.org/) is required to build and run the generator. | ||
8 | |||
9 | [pandoc](https://pandoc.org/) is required for processing markdown files. | ||
10 | |||
11 | ## Build | ||
12 | |||
13 | ``` | ||
14 | jpm build | ||
15 | ``` | ||
16 | |||
17 | ## Usage | ||
18 | |||
19 | ``` | ||
20 | webgen src/ | ||
21 | ``` | ||
22 | |||
23 | where `src/` is the directory to the site's source files. | ||