Auto saved by Logseq

This commit is contained in:
Matthew Ryan Dillon 2022-12-31 19:46:07 -07:00
parent 33d35c9233
commit c46559d9c8
8 changed files with 326 additions and 10 deletions

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
MARKDOWN=$(shell find . -iname "*.md")
HTML=$(MARKDOWN:.md=.html)
.PHONY = all tar clean
all: $(HTML)
%.html: %.md
pandoc --from markdown --to html $< -o $@
tar: $(MARKDOWN)
tar --exclude=notes.tar.gz --exclude=.git/ -czvf notes.tar.gz ./
clean:
rm $(HTML)