|
@@ -2,24 +2,41 @@ The Markdown Resume
|
|
|
===================
|
|
|
|
|
|
### Instructions
|
|
|
+
|
|
|
```bash
|
|
|
git clone https://github.com/mszep/pandoc_resume
|
|
|
cd pandoc_resume
|
|
|
vim markdown/resume.md # insert your own resume info
|
|
|
+```
|
|
|
+
|
|
|
+#### Local
|
|
|
+
|
|
|
+Make everything
|
|
|
+
|
|
|
+```bash
|
|
|
make
|
|
|
```
|
|
|
|
|
|
-### Running Dockerized
|
|
|
+Make specifics
|
|
|
+
|
|
|
+```bash
|
|
|
+make pdf
|
|
|
+make html
|
|
|
+```
|
|
|
+
|
|
|
+#### Dockerized
|
|
|
+
|
|
|
+Make everything
|
|
|
+
|
|
|
```bash
|
|
|
-git clone https://github.com/mszep/pandoc_resume
|
|
|
-cd pandoc_resume
|
|
|
-vim markdown/resume.md # insert your own resume info
|
|
|
docker-compose up -d
|
|
|
```
|
|
|
|
|
|
### Requirements
|
|
|
|
|
|
-* ConTeXt 0.6X
|
|
|
+If not using `docker` then you will need the following dependencies.
|
|
|
+
|
|
|
+* ConTeXt 0.6x
|
|
|
* pandoc 2.x
|
|
|
* 1.x is deprecated
|
|
|
|
|
@@ -47,6 +64,12 @@ brew install pandoc
|
|
|
brew cask install mactex
|
|
|
```
|
|
|
|
|
|
+Make sure to add the directory `/Library/TeX/texbin/` to your path or `context` and `mtxrun` will not be found.
|
|
|
+
|
|
|
+```
|
|
|
+export PATH=$PATH:/Library/TeX/texbin/
|
|
|
+```
|
|
|
+
|
|
|
### Troubleshooting
|
|
|
|
|
|
#### Get versions
|