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
#!/usr/bin/perl | |
# | |
# md2pdf | |
use warnings; | |
use strict; | |
if (! defined $ARGV[0]) { | |
print "Please provide a filename to process.\n"; | |
print "e.g. md2pdf sample.md\n"; |