Skip to content

Instantly share code, notes, and snippets.

@davisford
Created January 9, 2016 03:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save davisford/3839962587517df67e77 to your computer and use it in GitHub Desktop.
Save davisford/3839962587517df67e77 to your computer and use it in GitHub Desktop.
#!/bin/sh
if (( $# != 2))
then
echo "Usage: md2pdf.sh <input.md> <output.pdf>"
exit 1
fi
markdown $1 | htmldoc --cont --headfootsize 8.0 --linkcolor blue --linkstyle plain --format pdf14 - > $2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment