Turn a simple markdown document into a resume in HTML and PDF.
- PDF generation via wkhtmltopdf
- Responsive design for multiple device viewport sizes
- Simple Markdown formatting
The generated files will be put in the same directory as your source file.
# For usage on the command line
npm install -g markdown-resume
# Generate HTML file
md2resume my-resume-file.md
# Generate PDF file
md2resume --pdf my-resume-file.md
# Build a docker image
docker build -t md2resume .
# In the directory where your resume is, run the container
docker run -v $PWD:/src md2resume resume.md
# You can also generate the pdf format
docker run -v $PWD:/src md2resume -pdf resume.md
npm install -g light-server
light-server -s . -w "your_resume.md # md2resume your_resume.md"
Open http://localhost:4000/your_resume.html in a browser and see changes live.
var md2resume = require('markdown-resume')
# Generate HTML
md2resume('my-resume-file.md', 'default')
.then(html)
# ... do something with html
});
As above, this library steals pretty much everything from markdown-resume.