mszep / pandoc_resume

The Markdown Resume
http://mszep.github.io/pandoc_resume/
MIT License
1.65k stars 758 forks source link

Modularize structure to add support for new styles and different input files #33

Closed nitrocode closed 6 years ago

nitrocode commented 6 years ago

Summary

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 :)

nitrocode commented 6 years ago

@mszep :smile:

mszep commented 6 years ago

Awesome! Thanks so much, and sorry for the delay in getting back to you!

nitrocode commented 6 years ago

No worries at all, thanks for merging!