Skip to content

Instantly share code, notes, and snippets.

@drvinceknight
Created October 1, 2016 06:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drvinceknight/fa53cd64941a9314cbba0f03abd6b556 to your computer and use it in GitHub Desktop.
Save drvinceknight/fa53cd64941a9314cbba0f03abd6b556 to your computer and use it in GitHub Desktop.
nbs = $(wildcard *.ipynb)
pdfs = $(nbs:%.ipynb=%.pdf)
all: $(pdfs)
%.pdf: %.ipynb
jupyter-nbconvert --to pdf $<;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment