#!/bin/sh # Pull in global dependencies. . ./helpers.sh intermediate_file="${1%.html}.intermediate" redo-ifchange title redo-ifchange "$intermediate_file" # Build entry data. blog_title=`read_and_escape_file title | head -1` title_html=`cat "$intermediate_file" | head -1` title_plaintext=`echo "$title_html" | html2text` title_plaintext_escaped=`escape_html "$title_plaintext"` body=`cat "$intermediate_file" | sed 1d` # Write first part of entry head. cat << EOF EOF # Write remaining entry head and body. printf "%s – %s\n\n\n" "$blog_title" "$title_plaintext_escaped" #printf "%s – %s\n\n\n" "$blog_title" "$entry_title" printf "

%s

\n" "$title_html" printf "
\n%s\n
\n\n" "$body"