mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
Create gh-pages branch via GitHub
This commit is contained in:
parent
d8c800959e
commit
a2567dc765
19
index.html
19
index.html
@ -28,13 +28,10 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<h1>Markdown Resume Styles</h1>
|
<h2>Features</h2>
|
||||||
|
|
||||||
<p>Turn a simple Markdown document into an elegant resume.</p>
|
|
||||||
|
|
||||||
<h2>Features</h2>
|
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>Turn a simple Markdown document into an elegant resume.</li>
|
||||||
<li>PDF generation via <code>wkhtmltopdf</code>
|
<li>PDF generation via <code>wkhtmltopdf</code>
|
||||||
</li>
|
</li>
|
||||||
<li>Responsive design for multiple device viewport sizes</li>
|
<li>Responsive design for multiple device viewport sizes</li>
|
||||||
@ -43,8 +40,8 @@
|
|||||||
<li>You can now version control and branch your resume.</li>
|
<li>You can now version control and branch your resume.</li>
|
||||||
</ul><h2>Quickstart</h2>
|
</ul><h2>Quickstart</h2>
|
||||||
|
|
||||||
<pre><code>php ./build/build.php --source sample.md
|
<pre><code>php ./build/build.php --source resume/sample.md
|
||||||
php ./build/build.php --source sample.md --pdf
|
php ./build/build.php --source resume/sample.md --pdf
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<h2>Options</h2>
|
<h2>Options</h2>
|
||||||
@ -52,12 +49,12 @@ php ./build/build.php --source sample.md --pdf
|
|||||||
<p>If you want to edit your markdown resume in your editor while watching it
|
<p>If you want to edit your markdown resume in your editor while watching it
|
||||||
update in your browser, run this command:</p>
|
update in your browser, run this command:</p>
|
||||||
|
|
||||||
<pre><code>watch php ./build/build.php -s sample.md -r
|
<pre><code>watch php ./build/build.php -s resume/sample.md -r
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<p>This makes the build script run periodically, and html document will refresh
|
<p>This makes the build script run when the file changes, and html document will
|
||||||
every two seconds. Open the <code>./ouput/sample.html</code> file in your browser, and
|
refresh every two seconds. Open the <code>./ouput/sample.html</code> file in your browser,
|
||||||
then just save your markdown document when you want to see a fresh preview.</p>
|
and then just save your markdown document when you want to see a fresh preview.</p>
|
||||||
|
|
||||||
<h2>Development</h2>
|
<h2>Development</h2>
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
{"body":"# Markdown Resume Styles\r\n\r\nTurn a simple Markdown document into an elegant resume.\r\n\r\n## Features\r\n\r\n* PDF generation via `wkhtmltopdf`\r\n* Responsive design for multiple device viewport sizes\r\n* Simple Markdown formatting\r\n* Single file deployment\r\n* You can now version control and branch your resume.\r\n\r\n## Quickstart\r\n\r\n php ./build/build.php --source sample.md\r\n php ./build/build.php --source sample.md --pdf\r\n\r\n## Options\r\n\r\nIf you want to edit your markdown resume in your editor while watching it\r\nupdate in your browser, run this command:\r\n\r\n watch php ./build/build.php -s sample.md -r\r\n \r\nThis makes the build script run periodically, and html document will refresh\r\nevery two seconds. Open the `./ouput/sample.html` file in your browser, and\r\nthen just save your markdown document when you want to see a fresh preview.\r\n\r\n## Development\r\n\r\nMarkdown is limited to basic html markup. Follow the `resume/sample.md` file \r\nas a guideline. This file includes various headers and several nested elements.\r\nThis allows us to construct a semantic HTML document for the resume, and then\r\nuse a CSS rules to display a very nice resume. Note that because we have very\r\nfew ways to nest or identify elements that many of the css rules are based\r\non descendant and adjacent selectors. \r\n\r\n## Acknowledgments\r\n\r\nThe initial inspiration is from the [Sample Resume Template](http://sampleresumetemplate.net/).\r\nHowever, no HTML from that project has been used in this. General layout has been reused, and media queries\r\nhave been added. It's a nice template, and if you are a more comfortable with html than markdown, you should use it.","tagline":"An elegant set of css rules for generating a resume with Markdown","note":"Don't delete this file! It's used internally to help with page regeneration.","name":"Markdown Resume Builder","google":"UA-8504376-1"}
|
{"google":"UA-8504376-1","body":"## Features\r\n\r\n* Turn a simple Markdown document into an elegant resume.\r\n* PDF generation via `wkhtmltopdf`\r\n* Responsive design for multiple device viewport sizes\r\n* Simple Markdown formatting\r\n* Single file deployment\r\n* You can now version control and branch your resume.\r\n\r\n## Quickstart\r\n\r\n php ./build/build.php --source resume/sample.md\r\n php ./build/build.php --source resume/sample.md --pdf\r\n\r\n## Options\r\n\r\nIf you want to edit your markdown resume in your editor while watching it\r\nupdate in your browser, run this command:\r\n\r\n watch php ./build/build.php -s resume/sample.md -r\r\n \r\nThis makes the build script run when the file changes, and html document will\r\nrefresh every two seconds. Open the `./ouput/sample.html` file in your browser,\r\nand then just save your markdown document when you want to see a fresh preview.\r\n\r\n## Development\r\n\r\nMarkdown is limited to basic html markup. Follow the `resume/sample.md` file \r\nas a guideline. This file includes various headers and several nested elements.\r\nThis allows us to construct a semantic HTML document for the resume, and then\r\nuse a CSS rules to display a very nice resume. Note that because we have very\r\nfew ways to nest or identify elements that many of the css rules are based\r\non descendant and adjacent selectors. \r\n\r\n## Acknowledgments\r\n\r\nThe initial inspiration is from the [Sample Resume Template](http://sampleresumetemplate.net/).\r\nHowever, no HTML from that project has been used in this. General layout has been reused, and media queries\r\nhave been added. It's a nice template, and if you are a more comfortable with html than markdown, you should use it.","tagline":"An elegant set of css rules for generating a resume with Markdown","note":"Don't delete this file! It's used internally to help with page regeneration.","name":"Markdown Resume Builder"}
|
Loading…
x
Reference in New Issue
Block a user