Skip to content

Commit

Permalink
Expanded make to generate rtf and docx files.
Browse files Browse the repository at this point in the history
  • Loading branch information
shwoop committed Aug 27, 2014
1 parent a1017d0 commit 86c2067
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
resume.tex
*.swo
*.swp
*.docx
*.rtf
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
all: html pdf
all: html pdf docx rtf

pdf: resume.md
pandoc --standalone --template style_chmduquesne.tex \
Expand All @@ -12,9 +12,17 @@ html: style_chmduquesne.css resume.md
--from markdown --to html \
-o resume.html resume.md

docx: resume.md
pandoc -s -S resume.md -o resume.docx

rtf: resume.md
pandoc -s -S resume.md -o resume.rtf

clean:
rm resume.html
rm resume.tex
rm resume.tuc
rm resume.log
rm resume.pdf
rm resume.docx
rm resume.rtf

0 comments on commit 86c2067

Please sign in to comment.