2013-03-18 22:36:06 -04:00
|
|
|
# Markdown Resume Generator
|
2012-03-04 11:41:18 -05:00
|
|
|
|
2014-01-11 11:00:30 -05:00
|
|
|
2.0 Work in progress, unstable and not yet ready for use.
|
|
|
|
|
2014-01-11 16:22:10 -05:00
|
|
|
- [ ] Update composer for symfony dependencies
|
|
|
|
- [ ] Add pake and phar generator
|
|
|
|
- [ ] Update bin with new generated phar
|
|
|
|
- [ ] Convert to new command structure
|
|
|
|
- [ ] Update help files
|
2014-01-11 11:00:30 -05:00
|
|
|
|
|
|
|
## Description
|
|
|
|
|
2013-03-18 22:36:06 -04:00
|
|
|
Turn a simple Markdown document into an elegant resume with both a perfect
|
|
|
|
pdf printable format, and a responsive css3 html5 file. You can view a sample
|
|
|
|
at the [blog post for the project][blog].
|
2012-03-05 10:56:49 -05:00
|
|
|
|
|
|
|
## Features
|
|
|
|
|
2013-03-19 10:45:36 -04:00
|
|
|
* Three styles to choose from: modern, blockish, unstyled
|
2012-03-05 10:56:49 -05:00
|
|
|
* PDF generation via `wkhtmltopdf`
|
|
|
|
* Responsive design for multiple device viewport sizes
|
|
|
|
* Simple Markdown formatting
|
|
|
|
* Single file deployment
|
|
|
|
* You can now version control and branch your resume.
|
|
|
|
|
|
|
|
## Quickstart
|
|
|
|
|
2013-03-18 22:36:06 -04:00
|
|
|
php ./bin/resume.php --source resume/sample.md
|
|
|
|
php ./bin/resume.php --source resume/sample.md --pdf
|
2012-03-05 10:56:49 -05:00
|
|
|
|
2012-03-22 12:33:48 -04:00
|
|
|
## Options
|
|
|
|
|
2013-03-19 10:45:36 -04:00
|
|
|
Choose a template with the -t option.
|
|
|
|
|
|
|
|
php ./bin/resume.php --source resume/sample.md -t blockish
|
|
|
|
|
2012-03-22 12:33:48 -04:00
|
|
|
If you want to edit your markdown resume in your editor while watching it
|
|
|
|
update in your browser, run this command:
|
|
|
|
|
2013-03-18 22:36:06 -04:00
|
|
|
watch php ./bin/resume.php -s resume/sample.md -r
|
2012-03-22 12:33:48 -04:00
|
|
|
|
|
|
|
This makes the build script run periodically, and html document will refresh
|
2013-03-18 22:36:06 -04:00
|
|
|
every two seconds via a meta tag. Open the `./ouput/sample.html` file in
|
|
|
|
your browser, and then just save your markdown document when you want to see
|
|
|
|
a fresh preview.
|
2012-03-22 12:33:48 -04:00
|
|
|
|
2012-03-05 10:56:49 -05:00
|
|
|
## Development
|
|
|
|
|
|
|
|
Markdown is limited to basic html markup. Follow the `resume/sample.md` file
|
|
|
|
as a guideline. This file includes various headers and several nested elements.
|
|
|
|
This allows us to construct a semantic HTML document for the resume, and then
|
|
|
|
use a CSS rules to display a very nice resume. Note that because we have very
|
|
|
|
few ways to nest or identify elements that many of the css rules are based
|
|
|
|
on descendant and adjacent selectors.
|
|
|
|
|
|
|
|
## TODO
|
|
|
|
|
|
|
|
* Google Analytics include
|
|
|
|
|
|
|
|
## Acknowledgments
|
|
|
|
|
2012-12-31 17:30:31 -05:00
|
|
|
The initial inspiration is from the [Sample Resume Template][srt].
|
2012-03-05 10:56:49 -05:00
|
|
|
However, no HTML from that project has been used in this. General layout has been reused, and media queries
|
2012-12-31 17:30:31 -05:00
|
|
|
have been added. It's a nice template, and if you are a more comfortable with html than markdown, you should use it.
|
|
|
|
|
2014-01-08 09:05:08 -05:00
|
|
|
## Changelog
|
|
|
|
|
|
|
|
* __0.9.0__ : Add composer and update README with new changelog
|
|
|
|
* __0.8.8__ : Add Chinese text example (@ishitcno1)
|
|
|
|
* __0.8.7__ : Update pdf formatting of the modern template (@roleary)
|
|
|
|
* __0.8.6__ : Fix output path (@abhikandoi2000)
|
|
|
|
* __0.8.5__ : Fix issue #2
|
|
|
|
* __0.8.4__ : Correct chmod and add parameter for output directory (@kevinxucs)
|
|
|
|
* __0.8.2__ : Update build script and add refresh command option
|
|
|
|
* __0.8.1__ : Updating formatting of initial templates
|
|
|
|
* __0.8__ : Initial Release to Public
|
|
|
|
|
2012-12-31 17:30:31 -05:00
|
|
|
[srt]: http://sampleresumetemplate.net/ "A great starting point"
|
2013-03-18 22:36:06 -04:00
|
|
|
[blog]: http://there4development.com/blog/2012/12/31/markdown-resume-builder/
|