homepage/mdwntohtml

17 lines
307 B
Bash
Executable File

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