There are a variety of packages to integrate the www with emacs.
Here's a little one that is good for inlining the text from urls
included in emails.  Put the point on the url and M-U.  It creates a
new buffer with the text of the URL.  Requires lynx.

(defun lynx-dump ()
   """Dump the url at point into a buffer"""
   (interactive)
   (shell-command 
    (concat "lynx -dump '" (thing-at-point 'url) "'")
    (concat "*Lynx-" (thing-at-point 'url) "*")))


(global-set-key "\M-U" 'lynx-dump)


And a test URL for you (a cool programming language that I just
discovered -- worth the read if you aren't familiar with it)

http://www.cs.arizona.edu/icon/docs/ipd266.htm

_______________________________________________
Bits mailing list
[EMAIL PROTECTED]
http://www.sugoi.org/mailman/listinfo/bits

Reply via email to