diff --git a/README.md b/README.md index 2fd740f..aeb557a 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ To install pandoc on Mac OS X, run `brew install pandoc`. To install it on Linux git clone git@github.com:mrzool/cv-boilerplate.git && cd cv-boilerplate && rm -rf .git -2. Open `content.yml` with your text editor and fill it with your personal details, work experience, education, and desired settings. +2. Open `details.yml` with your text editor and fill it with your personal details, work experience, education, and desired settings. 3. Run `make` to compile the PDF. 4. Tweak on `template.tex` until you're satisfied with the result. diff --git a/content.yml b/details.yml similarity index 100% rename from content.yml rename to details.yml diff --git a/makefile b/makefile index 5db2fc3..e3ab559 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -output.pdf : template.tex content.yml +output.pdf : template.tex details.yml pandoc $(filter-out $<,$^ ) -o $@ --latex-engine=xelatex --template=$< clean :