Make sure the emacs package org-web-tools is installed
Start emacs then M-x eww and type or paste the URL.
Then M-x org-web-tools-read-url-as-org.
Save as something.org.
Then orgnote.py something somthing. Drop
something.org into the something
directory.
Change to the something directory and
make pdf.
Add the following to ~/.bashrc
function orgwriteweb() {
orgnote.py /tmp/$2 $2
emacsclient -u -e "(eww-browse-url \"$1\")" -e "(org-web-tools-read-url-as-org \"$1\")" -e "(write-file \"/tmp/$2/$2.org\")"
echo "written as /tmp/$2/$2.org"
}
Then orgwriteweb http://example.com/index.html example
will write an org mode file to /tmp/example/example.org
together with the Makefile and other apparatus to create
various formats.