blob: dcd9a2c0807cd0c1ffad528bd16766fc8c999e37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
.PHONY: upload default
default: language_description.html
.SUFFIXES: .md .html
.md.html:
pandoc --mathml -so $@ -c style.css $<
upload: language_description.html style.css
rsync --mkpath language_description.html style.css runxiyu.org:/var/www/docs/e2/
|