The articles themselves can be copy-pasted, but I can think of no good way to handle the issue of translating threaded comments. When I try to copy these directly, my word processor tells me to stick a finger up my nose, because producing smart looks evidently ain’t in my nature.
The “Save Webpage As” feature will perhaps be a better solution copy and paste, although you will still not save comments that are nested more than half a dozen or so deep (not that this is usually a problem). That allows you to read in offline mode allowing you to disconnect the net connection.
If you explicitly want to not have visible hyperlinks to click on then you have a few options to be rid of them:
Open the saved webpage in Word, select all and strip hyperlinks. I believe the shortcut key is cntrl-shift-F9.
Run the saved pages through a regex substitution. In vim that would mean typing :s/\<a /<a style="display: none" /g. On a linux command line that would mean running sed 's/\<a /<a style="display: none" /g' foo.html> foo2.html.
Download that lesswrong kibotzer script that was posted around here a year or so ago. Add one line in the appropriate place so that it hides other links as well as authors.
(None of the above are tested. I don’t happen to have any of those pieces of software installed on this machine and would have to walk all the way to the next room to try it. I’m not sure if there is interest to warrant it but those would be my approaches.)
The “Save Webpage As” feature will perhaps be a better solution copy and paste, although you will still not save comments that are nested more than half a dozen or so deep (not that this is usually a problem). That allows you to read in offline mode allowing you to disconnect the net connection.
If you explicitly want to not have visible hyperlinks to click on then you have a few options to be rid of them:
Open the saved webpage in Word, select all and strip hyperlinks. I believe the shortcut key is cntrl-shift-F9.
Run the saved pages through a regex substitution. In vim that would mean typing
:s/\<a /<a style="display: none" /g
. On a linux command line that would mean runningsed 's/\<a /<a style="display: none" /g' foo.html> foo2.html
.Download that lesswrong kibotzer script that was posted around here a year or so ago. Add one line in the appropriate place so that it hides other links as well as authors.
(None of the above are tested. I don’t happen to have any of those pieces of software installed on this machine and would have to walk all the way to the next room to try it. I’m not sure if there is interest to warrant it but those would be my approaches.)