Created
May 12, 2011 03:12
-
-
Save hernanflores/967868 to your computer and use it in GitHub Desktop.
markdown to pdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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