16 lines
281 B
Markdown
16 lines
281 B
Markdown
# My Resume
|
|
|
|
## Getting started
|
|
|
|
```sh
|
|
# Output as PDF
|
|
pandoc resume.md -f markdown -t pdf -o resume.pdf \
|
|
-V geometry:margin=0.75in \
|
|
-V mainfont="Lato" \
|
|
-V fontsize=11pt \
|
|
-V raggedright
|
|
|
|
## Output as DOCX
|
|
pandoc resume.md -f markdown -t docx -o resume.docx
|
|
```
|