sunsetting version (for now)

This commit is contained in:
Atlas Cove 2023-02-01 17:59:45 +00:00
parent 412f929e3d
commit ce9605a6b4
3 changed files with 18 additions and 17 deletions

View File

@ -1,6 +1,6 @@
dnl template.m4.html v1.0 dnl template.m4.html v1.0
dnl Part of the tape-and-string suite used to construct the website dnl Part of the tape-and-string suite used to construct the website
include(`lib.m4')dnl include(LIB)dnl
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>

View File

@ -1,17 +1,30 @@
#!/bin/bash #!/bin/bash
# render.sh: part of the tape-and-string framework. # render.sh: part of the tape-and-string framework.
# v2.0 # v2.1
source string.sh declare -A prog
prog[m4]=`readlink -f main.html.m4`
prog[lib]=`readlink -f lib.m4`
prog[title]=`readlink -f titlelookup`
function tape {
case $1 in
*.txti) redcloth $1 ;;
*.org) org-ruby --translate html $1 ;;
*.md) comrak --gfm $1 ;;
*.html) cat $1 ;;
*) pandoc --cols 168 -t html $i || echo "Unable to render $i, unknown format" ;;
esac
}
cd .. cd ..
files=(`find -not -path './_*'`) files=(`find -not -path './_*'`)
for i in ${files[@]}; do for i in ${files[@]}; do
echo $i
if test -d $i; then if test -d $i; then
if test -d ../$i; then if test -d ../$i; then
mkdir -p ../$i mkdir -vp ../$i
else continue else continue
fi fi
elif test -f $i; then elif test -f $i; then
tape $i | m4 -DTITLE=`${prog[title]}` ${prog[m4]} < $i > ../$i tape $i | m4 -DTITLE=`${prog[title]}` -DLIB=${prog[lib]} ${prog[m4]} > ../$i
else else
echo "Skipping $i, unknown file type" echo "Skipping $i, unknown file type"
fi fi

View File

@ -1,12 +0,0 @@
declare -A prog
prog[m4]=`readlink -f main.html.m4`
prog[title]=`readlink -f titlelookup`
function tape {
case $1 in
*.txti) redcloth $1 ;;
*.org) org-ruby --translate html $1 ;;
*.md) comrak --gfm $1 ;;
*.html) cat $1
*) pandoc --cols 168 -t html $i || echo "Unable to render $i, unknown format" ;;
esac
}