&root = . &tmpl_dir = ./templates HTML_TEMPLATE = main.html !html = | &(tmpl_dir)/ \ |> ^b html %f^ \ pandoc --from markdown --to html \ --template=&(tmpl_dir)/$(HTML_TEMPLATE) \ --include-in-header=&(tmpl_dir)/header.html \ --include-before-body=&(tmpl_dir)/nav.html \ --include-after-body=&(tmpl_dir)/footer.html \ --css &(root)/css/style.css \ %f | sed 's|%%webRoot%%|&(root)|g' > %o \ |> %B.html # Images !png = |> convert %f %o |> %B.png !compress_png = |> zopflipng %f %o |> !compress_jpg = |> cjpeg -quality 80 -progressive -outfile %o %f |> !compress_pdf = |> ps2pdf %f %o |> JPG_OPT = -quality 80 -strip -interlace Plane !blur_mini = |> ^ %f -> blur mini^ convert %f -resize 400x400 -blur 0x8 $(JPG_OPT) %o |> blur_mini.jpg !thumbnail = |> ^ %f -> thumbnail^ convert %f -resize 200x200 $(JPG_OPT) %o |>