From ff74cdc313c41593509443d626893da3c20e15d2 Mon Sep 17 00:00:00 2001 From: zool Date: Mon, 16 Nov 2015 14:44:49 +0100 Subject: [PATCH] Rename YAML file to be consistent with letter-boilerplate --- README.md | 2 +- content.yml => details.yml | 0 makefile | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename content.yml => details.yml (100%) 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 :