all: html pdf epub

.PHONY: html pdf epub all

html:
	quarto render --to html

pdf:
	quarto render --to pdf

epub:
	quarto render --to epub

