aboutsummaryrefslogtreecommitdiff
path: root/mkweb
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2023-06-17 10:32:15 +0000
committerrodri <rgl@antares-labs.eu>2023-06-17 10:32:15 +0000
commit9d48b7e5fcf840f710a7519800a3650fc7cf0aae (patch)
tree792aa5dc523ac505fdfd4a527cd6e07b41ae3bea /mkweb
parent4d4867ed7731c7aa70855e0b62913f442d35628c (diff)
downloadmkweb-9d48b7e5fcf840f710a7519800a3650fc7cf0aae.tar.gz
mkweb-9d48b7e5fcf840f710a7519800a3650fc7cf0aae.tar.bz2
mkweb-9d48b7e5fcf840f710a7519800a3650fc7cf0aae.zip
md2html.awk now allows an image size spec.
added the cv thumbnail generator script. minor improvements to the mkweb script.
Diffstat (limited to 'mkweb')
-rwxr-xr-xmkweb11
1 files changed, 6 insertions, 5 deletions
diff --git a/mkweb b/mkweb
index d29cc05..2be2275 100755
--- a/mkweb
+++ b/mkweb
@@ -35,14 +35,15 @@ if(! ~ $#* 0)
for(d in $sections)
echo $site/$d/index.html
}
+ exit
case -s
if(~ $#2 0)
usage
- buildsection $2
+ sections=`{walk -d $2 | grep -v $filter}
case -*
usage
}
-if not
- for(d in $sections .){
- buildsection $d
- }
+
+for(d in $sections .){
+ buildsection $d
+}