Closed nitrocode closed 6 years ago
resume.md
cover.md
markdown/resume.md
style_*
styles/chmduquesne.*
Makefile
make all
make
This should allow us to add new styles easily (https://github.com/mszep/pandoc_resume/issues/2)
Before running make all
➜ pandoc_resume_clean git:(modularize-structure) tree . ├── docker-compose.yml ├── LICENSE ├── Makefile ├── markdown │ └── resume.md ├── README.md └── styles ├── chmduquesne.css └── chmduquesne.tex 2 directories, 7 files
After running make all
➜ pandoc_resume_clean git:(modularize-structure) tree . ├── docker-compose.yml ├── LICENSE ├── Makefile ├── markdown │ └── resume.md ├── output │ ├── context_resume.log │ ├── resume.docx │ ├── resume.html │ ├── resume.log │ ├── resume.pdf │ ├── resume.rtf │ ├── resume.tex │ └── resume.tuc ├── README.md └── styles ├── chmduquesne.css └── chmduquesne.tex 3 directories, 15 files
@mszep One last PR and I'll take a break :)
@mszep :smile:
Awesome! Thanks so much, and sorry for the delay in getting back to you!
No worries at all, thanks for merging!
Summary
resume.md
andcover.md
to generate pdfs for both)resume.md
tomarkdown/resume.md
style_*
styles/chmduquesne.*
Makefile
to easily swap in a style, input directory, and output directorymake all
or anymake
commandsThis should allow us to add new styles easily (https://github.com/mszep/pandoc_resume/issues/2)
Before running
make all
After running
make all
@mszep One last PR and I'll take a break :)