resume: add Makefile for alt format creation

This commit is contained in:
Trianta 2024-07-28 19:02:58 -05:00
parent a9c8c81e0f
commit a4bd3a867a

9
about/Makefile Normal file
View File

@ -0,0 +1,9 @@
all:
echo "Creating html from md..."
pandoc -c resume.css --from markdown --to html -o resume.html resume.md
echo "Finished. Creating pdf from html..."
wkhtmltopdf resume.html resume.pdf
echo "Finished. Creating docx from md..."
pandoc --from markdown --to docx --reference-doc=reference.docx -o resume.docx resume.md
echo "Finished."