Skip to content

Instantly share code, notes, and snippets.

View ugtar's full-sized avatar

Uri Okrent ugtar

  • VAST Data
  • New Jersey
View GitHub Profile
@ugtar
ugtar / Makefile
Last active August 15, 2016 20:43
The Makefile I use to build my rst formatted text resume into both html and pdf versions.http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html
all: spell pdf html
pdf: resume.rst
@echo "Writing PDF"
rst2pdf resume.rst --stylesheets=styles/pdfstyle
html: resume.rst
@echo "Writing HTML"
rst2html --stylesheet-path=styles/htmlstyle.css resume.rst > resume.html