homepage/mdwntohtml

16 lines
283 B
Plaintext
Raw Normal View History

#! /bin/sh
while IFS=: read field value; do
case "$field" in
"")
break
;;
Title)
# echo strips leading and trailing whitespace
title=$(echo $value)
;;
esac
done
2010-03-29 11:12:55 -06:00
markdown | m4 -DTITLE="$title" $1 -