Building an academic CV in markdown

I'm creeping towards the tail-end of my PhD so it's probably time to dust off my CV and tidy it up. In the past I've written this document a few different ways, from LaTeX to a custom Inkscape document, but I've decided to move with the times and try something new: a markdown CV that compiles to both an HTML web version and well-formatted PDF.

markdown-cv

Googling "markdown CV" gave a few different options: one using pandoc with slightly dated-looking themes; another command-line PHP script, whose results are a bit prettier, but after trying these I came across markdown-cv from github user elipapa which seemed to be simple to use and came with a nice design — also it's built with jekyll, which I already use to power blm.io.

Eliseo Papa wrote up a blog post on how and why he put markdown-cv together, and their CV looks great so that was enough to convince me to give it a shot.

HTML version

markdown-cv uses CSS media queries to select different stylesheets for screen and print. This means in practice you can optimise your CV design for each medium pretty easily — I went with a kind of colourful web version and more toned-down print version.

I didn't make any big changes to elipapa's markdown-cv, just played with the colours, fonts, and tweaked the layout and added font-awesome icons.

Here's a screenshot of the current HTML version of my CV:

I like the whitespace and clear separation of headings, dates and details. The underlying CSS layout has some technical issues — the relative positions can get messed up on resize — but it still looks good on mobile devices and at a range of display resolutions.

PDF version

There were a few difficulties converting the web version to print. The general approach for CVs in markdown seems to be to run wkhtmltopdf, however this uses WebKit for rendering (as the name suggests) which it turns out has issues with some modern CSS features when printing.

One issue was with CSS3 multiple columns layout, with wkhtmltopdf these were rendered in a single column while the web version renders correctly in 3-columns, across modern browsers.

It turns out support was dropped for printing columns specified in this way due to issues with page breaks, and apparently this still hasn't been resolved. To get around this, I convert to PDF through Firefox with its Gecko engine and all is well.

Page breaks can still be iffy though, web renderers are no LaTeX, so if it doesn't break cleanly over pages you can add these in manually using CSS. For example, say you want to add a page break before your publications section:

cv.md

## Publications

You _et al._ (2014) Some great paper...

cv-print.css

#publications {
    page-break-before: always;
}

There's another issue I can't debug relating to web links in the PDF version (currently some work, some don't), but in theory the PDF is for print so maybe it doesn't matter.

Result

Here's what I have so far (click through to see the full versions) — the code is on github if you want to adapt it for your own use! All credit goes to the original author of markdown-cv.

PDF

HTML


comments powered by Disqus