Mercurial > yakumo_izuru > aya
annotate doc.go @ 79:7b122b71fcfa draft
A good time to finally release a stable version
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author | yakumo.izuru |
---|---|
date | Tue, 12 Dec 2023 14:09:17 +0000 |
parents | e8eb1fdb4b03 |
children | d8c30f64e301 |
rev | line source |
---|---|
68 | 1 // Package aya is [...] |
67 | 2 |
3 // Aya is the fastest static site generator | |
4 // Requires zero configuration to get started | |
5 // Named after Aya Shameimaru from Touhou Project | |
6 | |
7 // Current subcommands available: | |
8 // build -- Generate the site, result can be found at .pub | |
9 // build [file] -- Only generate the argument passed to standard output | |
10 // serve -- Spawn an HTTP server in localhost port 8000, serving the .pub directory | |
11 // var [file] -- Query variables from a markdown file | |
12 // version -- Print version and exit | |
13 // watch -- (Re)generate site while looking for changes | |
14 | |
15 // Aya is licensed under the MIT license | |
16 // This is a hard fork of git.mills.io/prologic/zs, which in turn is a fork of zserge's zs | |
17 // This one (re)incorporates the features removed in the former from the latter | |
18 | |
76
e8eb1fdb4b03
Passed through golint only to get a load of garbage
yakumo.izuru
parents:
71
diff
changeset
|
19 // Copyright (c) 2014 Serge Zaitsev <hello@zserge.com> |
e8eb1fdb4b03
Passed through golint only to get a load of garbage
yakumo.izuru
parents:
71
diff
changeset
|
20 // Copyright (c) 2023 Izuru Yakumo <yakumo.izuru@chaotic.ninja> |
71
7819959ac6ca
feat: move the blackfriday extension settings out of the render function, improve documentation
yakumo.izuru
parents:
69
diff
changeset
|
21 |
67 | 22 // Ayaya~ |
71
7819959ac6ca
feat: move the blackfriday extension settings out of the render function, improve documentation
yakumo.izuru
parents:
69
diff
changeset
|
23 package aya |