Skip to content

Instantly share code, notes, and snippets.

@hernanflores
Created May 12, 2011 03:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hernanflores/967868 to your computer and use it in GitHub Desktop.
Save hernanflores/967868 to your computer and use it in GitHub Desktop.
markdown to pdf
#!/bin/bash
#requires markdown & wkhtmltopdf
markdown $1.md > $1.html;wkhtmltopdf -s A4 $1.html $1.pdf;rm $1.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment