Stage1 of migration + little changes

This commit is contained in:
2023-01-27 17:29:26 +03:00
parent 297d8e85cb
commit 001b4ed508
5 changed files with 28 additions and 8 deletions

11
linear_nt/Makefile Normal file
View File

@@ -0,0 +1,11 @@
# Default makefile for algorithmica-like pages
.PHONY: all clean
all: render.html
render.html: main.md
pandoc $< --to html --mathjax --output $@
clean:
test -f render.html && rm render.html || echo "Nothing to clean"