blob: cdf82b543ca4f3b8a4ef32dc0a4f4c9542b58827 [file] [log] [blame]
.PHONY: html
html: $(patsubst %.md, %.html, $(wildcard *.md))
%.html: %.md
markdown2 \
--extras=code-friendly \
--extras=fenced-code-blocks \
--extras=tables \
$< > $@
.PHONY: clean
clean:
$(RM) *.html