hlfw.ca

hlfw

ref: 694ea64aa6febc4ff38bc28275abddad1a9b8e08
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 1h){
	exec cat $cache
	exit
}

nl='
'

{
	prelude '' 'main'

	markdown $repo/$1.md
echo '</article>
</body>
</html>
'
} | tee $tcache && mv $tcache $cache