From a4bd3a867a8503fa179c0dd739cd85220727f1b7 Mon Sep 17 00:00:00 2001 From: Trianta <56975502+Trimutex@users.noreply.github.com> Date: Sun, 28 Jul 2024 19:02:58 -0500 Subject: [PATCH] resume: add Makefile for alt format creation --- about/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 about/Makefile diff --git a/about/Makefile b/about/Makefile new file mode 100644 index 0000000..7037c43 --- /dev/null +++ b/about/Makefile @@ -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." +