From 660487af4ea90d4a4e76a0c8b2cfa27487244443 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Tue, 23 Sep 2025 13:27:12 -0400 Subject: [PATCH] add DOCX output to update.sh --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b2dde50..b87d8f9 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,13 @@ ## Getting started ```sh -# Converting to PDF +# Output as PDF pandoc resume.md -f markdown -t pdf -o resume.pdf \ -V geometry:margin=0.75in \ -V mainfont="Lato" \ -V fontsize=11pt \ -V raggedright + +## Output as DOCX +pandoc resume.md -f markdown -t docx -o resume.docx ```