You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
265 B
Bash

#!/bin/sh
while true;
do
curl https://pad.xpub.nl/p/special_issue_8_jargoncss/export/txt > style.pdf.css
curl https://pad.xpub.nl/p/special_issue_8_jargonhtml/export/txt > content.md
pandoc --from markdown --to html content.md --output content.html
sleep 5
done;