emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/gnus/html2text.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/gnus/html2text.el
Date: Mon, 27 Sep 2004 04:01:55 -0400

Index: emacs/lisp/gnus/html2text.el
diff -c emacs/lisp/gnus/html2text.el:1.2 emacs/lisp/gnus/html2text.el:1.3
*** emacs/lisp/gnus/html2text.el:1.2    Sat Sep  4 13:13:43 2004
--- emacs/lisp/gnus/html2text.el        Mon Sep 27 07:44:44 2004
***************
*** 1,5 ****
  ;;; html2text.el --- a simple html to plain text converter
! ;; Copyright (C) 2002, 2003 Free Software Foundation, Inc.
  
  ;; Author: Joakim Hove <address@hidden>
  
--- 1,5 ----
  ;;; html2text.el --- a simple html to plain text converter
! ;; Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
  
  ;; Author: Joakim Hove <address@hidden>
  
***************
*** 42,48 ****
  (defvar html2text-format-single-element-list '(("hr" . html2text-clean-hr)))
  
  (defvar html2text-replace-list
!   '(("&nbsp;" . " ") ("&gt;" . ">") ("&lt;" . "<") ("&quot;" . "\""))
    "The map of entity to text.
  
  This is an alist were each element is a dotted pair consisting of an
--- 42,49 ----
  (defvar html2text-format-single-element-list '(("hr" . html2text-clean-hr)))
  
  (defvar html2text-replace-list
!   '(("&nbsp;" . " ") ("&gt;" . ">") ("&lt;" . "<") ("&quot;" . "\"")
!     ("&amp;" . "&") ("&apos;" . "'"))
    "The map of entity to text.
  
  This is an alist were each element is a dotted pair consisting of an




reply via email to

[Prev in Thread] Current Thread [Next in Thread]