1 ;;; html2text.el --- a simple html to plain text converter
2 ;; Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
4 ;; Author: Joakim Hove <hove@phys.ntnu.no>
6 ;; This file is part of GNU Emacs.
8 ;; GNU Emacs is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs; see the file COPYING. If not, write to the
20 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 ;; Boston, MA 02111-1307, USA.
25 ;; These functions provide a simple way to wash/clean html infected
26 ;; mails. Definitely do not work in all cases, but some improvement
27 ;; in readability is generally obtained. Formatting is only done in
28 ;; the buffer, so the next time you enter the article it will be
31 ;; The main function is `html2text'.
42 (defvar html2text-format-single-element-list
'(("hr" . html2text-clean-hr
)))
44 (defvar html2text-replace-list
45 '((" " .
" ") (">" .
">") ("<" .
"<") (""" .
"\"")
46 ("&" .
"&") ("'" .
"'"))
47 "The map of entity to text.
49 This is an alist were each element is a dotted pair consisting of an
50 old string, and a replacement string. This replacement is done by the
51 function `html2text-substitute' which basically performs a
52 `replace-string' operation for every element in the list. This is
53 completely verbatim - without any use of REGEXP.")
55 (defvar html2text-remove-tag-list
56 '("html" "body" "p" "img" "dir" "head" "div" "br" "font" "title" "meta")
57 "A list of removable tags.
59 This is a list of tags which should be removed, without any
60 formatting. Note that tags in the list are presented *without*
61 any \"<\" or \">\". All occurences of a tag appearing in this
62 list are removed, irrespective of whether it is a closing or
63 opening tag, or if the tag has additional attributes. The
64 deletion is done by the function `html2text-remove-tags'.
66 For instance the text:
68 \"Here comes something <font size\"+3\" face=\"Helvetica\"> big </font>.\"
72 \"Here comes something big.\"
74 If this list contains the element \"font\".")
76 (defvar html2text-format-tag-list
77 '(("b" . html2text-clean-bold
)
78 ("strong" . html2text-clean-bold
)
79 ("u" . html2text-clean-underline
)
80 ("i" . html2text-clean-italic
)
81 ("em" . html2text-clean-italic
)
82 ("blockquote" . html2text-clean-blockquote
)
83 ("a" . html2text-clean-anchor
)
84 ("ul" . html2text-clean-ul
)
85 ("ol" . html2text-clean-ol
)
86 ("dl" . html2text-clean-dl
)
87 ("center" . html2text-clean-center
))
88 "An alist of tags and processing functions.
90 This is an alist where each dotted pair consists of a tag, and then
91 the name of a function to be called when this tag is found. The
92 function is called with the arguments p1, p2, p3 and p4. These are
95 \"<b> This is bold text </b>\"
100 Then the called function will typically format the text somewhat and
103 (defvar html2text-remove-tag-list2
'("li" "dt" "dd" "meta")
104 "Another list of removable tags.
106 This is a list of tags which are removed similarly to the list
107 `html2text-remove-tag-list' - but these tags are retained for the
108 formatting, and then moved afterward.")
111 ;; </Global variables>
114 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
115 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
118 ;; <Utility functions>
122 (defun html2text-replace-string (from-string to-string min max
)
123 "Replace FROM-STRING with TO-STRING in region from MIN to MAX."
125 (let ((delta (- (string-width to-string
) (string-width from-string
)))
127 (while (search-forward from-string max t
)
128 (replace-match to-string
)
129 (setq change
(+ change delta
)))
133 ;; </Utility functions>
136 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
137 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
140 ;; <Functions related to attributes> i.e. <font size=+3>
143 (defun html2text-attr-value (list attribute
)
144 "Get value of ATTRIBUTE from LIST."
145 (nth 1 (assoc attribute list
)))
147 (defun html2text-get-attr (p1 p2
)
149 (re-search-forward " +[^ ]" p2 t
)
150 (let* ((attr-string (buffer-substring-no-properties (1- (point)) (1- p2
)))
151 (tmp-list (split-string attr-string
))
154 (prev (car tmp-list
))
155 (this (nth 1 tmp-list
))
156 (next (nth 2 tmp-list
))
161 ((string-match "[^ ]=[^ ]" prev
)
162 (let ((attr (nth 0 (split-string prev
"=")))
163 (value (nth 1 (split-string prev
"="))))
164 (setq attr-list
(cons (list attr value
) attr-list
))))
166 ((string-match "[^ ]=\\'" prev
)
167 (setq attr-list
(cons (list (substring prev
0 -
1) this
) attr-list
))))
169 (while (< index
(length tmp-list
))
172 ((string-match "[^ ]=[^ ]" this
)
173 (let ((attr (nth 0 (split-string this
"=")))
174 (value (nth 1 (split-string this
"="))))
175 (setq attr-list
(cons (list attr value
) attr-list
))))
177 ((string-match "\\`=[^ ]" this
)
178 (setq attr-list
(cons (list prev
(substring this
1)) attr-list
)))
180 ((string-match "[^ ]=\\'" this
)
181 (setq attr-list
(cons (list (substring this
0 -
1) next
) attr-list
)))
184 (setq attr-list
(cons (list prev next
) attr-list
))))
185 (setq index
(1+ index
))
188 (setq next
(nth (1+ index
) tmp-list
)))
190 ;; Tags with no accompanying "=" i.e. value=nil
192 (setq prev
(car tmp-list
))
193 (setq this
(nth 1 tmp-list
))
194 (setq next
(nth 2 tmp-list
))
197 (when (and (not (string-match "=" prev
))
198 (not (string= (substring this
0 1) "=")))
199 (setq attr-list
(cons (list prev nil
) attr-list
)))
200 (while (< index
(1- (length tmp-list
)))
201 (when (and (not (string-match "=" this
))
202 (not (or (string= (substring next
0 1) "=")
203 (string= (substring prev -
1) "="))))
204 (setq attr-list
(cons (list this nil
) attr-list
)))
205 (setq index
(1+ index
))
208 (setq next
(nth (1+ index
) tmp-list
)))
211 (not (string-match "=" this
))
212 (not (string= (substring prev -
1) "=")))
213 (setq attr-list
(cons (list this nil
) attr-list
)))
218 ;; </Functions related to attributes>
221 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
222 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
225 ;; <Functions to be called to format a tag-pair>
227 (defun html2text-clean-list-items (p1 p2 list-type
)
231 (while (re-search-forward "<li>" p2 t
)
232 (setq items
(1+ items
)))
234 (while (< item-nr items
)
235 (setq item-nr
(1+ item-nr
))
236 (re-search-forward "<li>" (point-max) t
)
238 ((string= list-type
"ul") (insert " o "))
239 ((string= list-type
"ol") (insert (format " %s: " item-nr
)))
240 (t (insert " x "))))))
242 (defun html2text-clean-dtdd (p1 p2
)
246 (while (re-search-forward "<dt>" p2 t
)
247 (setq items
(1+ items
)))
249 (while (< item-nr items
)
250 (setq item-nr
(1+ item-nr
))
251 (re-search-forward "<dt>\\([ ]*\\)" (point-max) t
)
252 (when (match-string 1)
253 (delete-region (point) (- (point) (string-width (match-string 1)))))
254 (let ((def-p1 (point))
256 (re-search-forward "\\([ ]*\\)\\(</dt>\\|<dd>\\)" (point-max) t
)
259 (let* ((mw1 (string-width (match-string 1)))
260 (mw2 (string-width (match-string 2)))
262 (goto-char (- (point) mw
))
263 (delete-region (point) (+ (point) mw1
))
264 (setq def-p2
(point))))
265 (setq def-p2
(- (point) (string-width (match-string 2)))))
266 (put-text-property def-p1 def-p2
'face
'bold
)))))
268 (defun html2text-delete-tags (p1 p2 p3 p4
)
269 (delete-region p1 p2
)
270 (delete-region (- p3
(- p2 p1
)) (- p4
(- p2 p1
))))
272 (defun html2text-delete-single-tag (p1 p2
)
273 (delete-region p1 p2
))
275 (defun html2text-clean-hr (p1 p2
)
276 (html2text-delete-single-tag p1 p2
)
279 (insert (make-string fill-column ?-
)))
281 (defun html2text-clean-ul (p1 p2 p3 p4
)
282 (html2text-delete-tags p1 p2 p3 p4
)
283 (html2text-clean-list-items p1
(- p3
(- p1 p2
)) "ul"))
285 (defun html2text-clean-ol (p1 p2 p3 p4
)
286 (html2text-delete-tags p1 p2 p3 p4
)
287 (html2text-clean-list-items p1
(- p3
(- p1 p2
)) "ol"))
289 (defun html2text-clean-dl (p1 p2 p3 p4
)
290 (html2text-delete-tags p1 p2 p3 p4
)
291 (html2text-clean-dtdd p1
(- p3
(- p1 p2
))))
293 (defun html2text-clean-center (p1 p2 p3 p4
)
294 (html2text-delete-tags p1 p2 p3 p4
)
295 (center-region p1
(- p3
(- p2 p1
))))
297 (defun html2text-clean-bold (p1 p2 p3 p4
)
298 (put-text-property p2 p3
'face
'bold
)
299 (html2text-delete-tags p1 p2 p3 p4
))
301 (defun html2text-clean-title (p1 p2 p3 p4
)
302 (put-text-property p2 p3
'face
'bold
)
303 (html2text-delete-tags p1 p2 p3 p4
))
305 (defun html2text-clean-underline (p1 p2 p3 p4
)
306 (put-text-property p2 p3
'face
'underline
)
307 (html2text-delete-tags p1 p2 p3 p4
))
309 (defun html2text-clean-italic (p1 p2 p3 p4
)
310 (put-text-property p2 p3
'face
'italic
)
311 (html2text-delete-tags p1 p2 p3 p4
))
313 (defun html2text-clean-font (p1 p2 p3 p4
)
314 (html2text-delete-tags p1 p2 p3 p4
))
316 (defun html2text-clean-blockquote (p1 p2 p3 p4
)
317 (html2text-delete-tags p1 p2 p3 p4
))
319 (defun html2text-clean-anchor (p1 p2 p3 p4
)
320 ;; If someone can explain how to make the URL clickable I will surely
321 ;; improve upon this.
322 ;; Maybe `goto-addr.el' can be used here.
323 (let* ((attr-list (html2text-get-attr p1 p2
))
324 (href (html2text-attr-value attr-list
"href")))
325 (delete-region p1 p4
)
328 (insert (substring href
1 -
1 ))
329 (put-text-property p1
(point) 'face
'bold
))))
332 ;; </Functions to be called to format a tag-pair>
335 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
336 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
339 ;; <Functions to be called to fix up paragraphs>
342 (defun html2text-fix-paragraph (p1 p2
)
347 (when (re-search-forward "<br>$" p2 t
)
349 (when (re-search-forward ".+[^<][^b][^r][^>]$" p2 t
)
351 (setq refill-start
(point))
353 (re-search-backward ".+[^<][^b][^r][^>]$" refill-start t
)
356 ;; refill-stop should ideally be adjusted to
357 ;; accomodate the "<br>" strings which are removed
358 ;; between refill-start and refill-stop. Can simply
359 ;; be returned from my-replace-string
360 (setq refill-stop
(+ (point)
361 (html2text-replace-string
363 refill-start
(point))))
364 ;; (message "Point = %s refill-stop = %s" (point) refill-stop)
366 (fill-region refill-start refill-stop
))))
367 (html2text-replace-string "<br>" "" p1 p2
))
370 ;; This one is interactive ...
372 (defun html2text-fix-paragraphs ()
373 "This _tries_ to fix up the paragraphs - this is done in quite a ad-hook
374 fashion, quite close to pure guess-work. It does work in some cases though."
376 (goto-char (point-min))
377 (replace-regexp "^<br>$" "")
378 ;; Removing lonely <br> on a single line, if they are left intact we
379 ;; dont have any paragraphs at all.
380 (goto-char (point-min))
383 (forward-paragraph 1)
384 ;;(message "Kaller fix med p1=%s p2=%s " p1 (1- (point))) (sleep-for 5)
385 (html2text-fix-paragraph p1
(1- (point)))
388 (forward-paragraph 1)))))
391 ;; </Functions to be called to fix up paragraphs>
394 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
395 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
398 ;; <Interactive functions>
401 (defun html2text-remove-tags (tag-list)
402 "Removes the tags listed in the list `html2text-remove-tag-list'.
403 See the documentation for that variable."
405 (dolist (tag tag-list
)
406 (goto-char (point-min))
407 (while (re-search-forward (format "\\(</?%s[^>]*>\\)" tag
) (point-max) t
)
408 (delete-region (match-beginning 0) (match-end 0)))))
410 (defun html2text-format-tags ()
411 "See the variable `html2text-format-tag-list' for documentation."
413 (dolist (tag-and-function html2text-format-tag-list
)
414 (let ((tag (car tag-and-function
))
415 (function (cdr tag-and-function
)))
416 (goto-char (point-min))
417 (while (re-search-forward (format "\\(<%s\\( [^>]*\\)?>\\)" tag
)
422 (search-backward "<" (point-min) t
)
424 (re-search-forward (format "</%s>" tag
) (point-max) t
)
426 (search-backward "</" (point-min) t
)
428 (funcall function p1 p2 p3 p4
)
431 (defun html2text-substitute ()
432 "See the variable `html2text-replace-list' for documentation."
434 (dolist (e html2text-replace-list
)
435 (goto-char (point-min))
436 (let ((old-string (car e
))
437 (new-string (cdr e
)))
438 (html2text-replace-string old-string new-string
(point-min) (point-max)))))
440 (defun html2text-format-single-elements ()
442 (dolist (tag-and-function html2text-format-single-element-list
)
443 (let ((tag (car tag-and-function
))
444 (function (cdr tag-and-function
)))
445 (goto-char (point-min))
446 (while (re-search-forward (format "\\(<%s\\( [^>]*\\)?>\\)" tag
)
450 (search-backward "<" (point-min) t
)
452 (funcall function p1 p2
))))))
460 "Convert HTML to plain text in the current buffer."
463 (let ((case-fold-search t
)
465 (html2text-remove-tags html2text-remove-tag-list
)
466 (html2text-format-tags)
467 (html2text-remove-tags html2text-remove-tag-list2
)
468 (html2text-substitute)
469 (html2text-format-single-elements)
470 (html2text-fix-paragraphs))))
473 ;; </Interactive functions>
476 ;;; arch-tag: e9e57b79-35d4-4de1-a647-e7e01fe56d1e
477 ;;; html2text.el ends here