hlfw.ca

hlfw

ref: 9398a533f92f66b9d9c68d674584cea57cc7110c
dir: /md2html/

View raw version
#!/bin/rc -e

. /sys/lib/hlfw/common.rc

cd $1
shift

rfork ne

cache=/usr/web/cache/$1.cache
tcache=/usr/web/cache/$1.cache.tmp.$pid
if(test -e $cache && ! test $cache -older 1m){
	exec cat $cache
	exit
}

nl='
'

{
	prelude '' 'main'
	echo '<img src="/'$logo'" height="200px" width="200px"/><br/>'
	
	markdown $repo/$1.md
} | tee $tcache && mv $tcache $cache