about summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md index 1a55ef6..62fd4da 100644 --- a/README.md +++ b/README.md
@@ -1,6 +1,6 @@
1# Source Code Htmlizer Written in Awk 1# Source Code Htmlizer Written in Awk
2 2
3Here we have a tool that's in a similar vein to [stagit][] and others. It takes a number of files on the commandline and generates HTML for them in an output directory, then generates an index with a file listing and a readme. It's also written completely in awk(1p). I guess that's the gimmick. 3Here we have a tool that's in a similar vein to [stagit][] and others. It takes a number of files on the commandline and generates HTML for them in an output directory, then generates an index with a file listing and a readme. It's also written completely in `awk(1p)`. I guess that's the gimmick.
4 4
5[stagit]: https://codemadness.org/stagit.html 5[stagit]: https://codemadness.org/stagit.html
6 6
@@ -13,7 +13,7 @@ I don't want to figure out how to process actual command-line arguments in awk,
13 -vreadmefilter='pandoc -thtml5' \ 13 -vreadmefilter='pandoc -thtml5' \
14 -vtemplate=template.html \ 14 -vtemplate=template.html \
15 -vstatic=style.css \ 15 -vstatic=style.css \
16 -vclone=https://foo.bar/schwa \ 16 -vclone='<a href="https://git.acdw.net/schwa">https://git.acdw.net/schwa</a>'
17 -vdesc="Source Code Htmlizer" \ 17 -vdesc="Source Code Htmlizer" \
18 * 18 *
19``` 19```