PANDOC_FLAGS = --toc --number-sections all: vue-notes.html %.html: %.md pandoc --standalone -f markdown -t html $(PANDOC_FLAGS) < $< > $@ clean: rm -f -- *.html .PHONY: all clean .SECONDARY: .DELETE_ON_ERROR: