Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 410 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 410 Bytes
  • Create HTML
pandoc -s --css=styling.css --metadata pagetitle="Marlon Mejia" -V lang=en -V highlighting-css= --mathjax -f markdown+smart resume.md -o resume.html
  • Create all
for i in html pdf docx; do  echo "resume.${i}" && pandoc -s --css=styling.css --metadata pagetitle="Marlon Mejia" -V lang=en -V highlighting-css= --mathjax -f markdown+smart resume.md -o "resume.${i}"; done