back

by smartmic·7y ago·view on hn ↗
It should not be to hard to convert the html files to epub using pandoc with a script. Will check later if it is worth the effort. I would also prefer PDF to read it.
1 comments
Here you go with a oneline (in bash, PDF, change as required):

    for i in {1..7} ; do curl "https://www.datapacrat.com/Opinion/Reciprocality/r0/Day$i.html" | pandoc -f html --pdf-engine=xelatex -o "chap$i.pdf"; done