* shr.el (shr-put-image): Use the new interface for animating images.
[gnus] / lisp / shr.el
1 ;;; shr.el --- Simple HTML Renderer
2
3 ;; Copyright (C) 2010-2011 Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: html
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; This package takes a HTML parse tree (as provided by
26 ;; libxml-parse-html-region) and renders it in the current buffer.  It
27 ;; does not do CSS, JavaScript or anything advanced: It's geared
28 ;; towards rendering typical short snippets of HTML, like what you'd
29 ;; find in HTML email and the like.
30
31 ;;; Code:
32
33 (eval-when-compile (require 'cl))
34 (require 'browse-url)
35
36 (defgroup shr nil
37   "Simple HTML Renderer"
38   :group 'mail)
39
40 (defcustom shr-max-image-proportion 0.9
41   "How big pictures displayed are in relation to the window they're in.
42 A value of 0.7 means that they are allowed to take up 70% of the
43 width and height of the window.  If they are larger than this,
44 and Emacs supports it, then the images will be rescaled down to
45 fit these criteria."
46   :version "24.1"
47   :group 'shr
48   :type 'float)
49
50 (defcustom shr-blocked-images nil
51   "Images that have URLs matching this regexp will be blocked."
52   :version "24.1"
53   :group 'shr
54   :type 'regexp)
55
56 (defcustom shr-table-horizontal-line ? 
57   "Character used to draw horizontal table lines."
58   :group 'shr
59   :type 'character)
60
61 (defcustom shr-table-vertical-line ? 
62   "Character used to draw vertical table lines."
63   :group 'shr
64   :type 'character)
65
66 (defcustom shr-table-corner ? 
67   "Character used to draw table corners."
68   :group 'shr
69   :type 'character)
70
71 (defcustom shr-hr-line ?-
72   "Character used to draw hr lines."
73   :group 'shr
74   :type 'character)
75
76 (defcustom shr-width fill-column
77   "Frame width to use for rendering.
78 May either be an integer specifying a fixed width in characters,
79 or nil, meaning that the full width of the window should be
80 used."
81   :type '(choice (integer :tag "Fixed width in characters")
82                  (const   :tag "Use the width of the window" nil))
83   :group 'shr)
84
85 (defvar shr-content-function nil
86   "If bound, this should be a function that will return the content.
87 This is used for cid: URLs, and the function is called with the
88 cid: URL as the argument.")
89
90 (defvar shr-put-image-function 'shr-put-image
91   "Function called to put image and alt string.")
92
93 (defface shr-strike-through '((t (:strike-through t)))
94   "Font for <s> elements."
95   :group 'shr)
96
97 (defface shr-link
98   '((t (:inherit link)))
99   "Font for link elements."
100   :group 'shr)
101
102 ;;; Internal variables.
103
104 (defvar shr-folding-mode nil)
105 (defvar shr-state nil)
106 (defvar shr-start nil)
107 (defvar shr-indentation 0)
108 (defvar shr-inhibit-images nil)
109 (defvar shr-list-mode nil)
110 (defvar shr-content-cache nil)
111 (defvar shr-kinsoku-shorten nil)
112 (defvar shr-table-depth 0)
113 (defvar shr-stylesheet nil)
114 (defvar shr-base nil)
115
116 (defvar shr-map
117   (let ((map (make-sparse-keymap)))
118     (define-key map "a" 'shr-show-alt-text)
119     (define-key map "i" 'shr-browse-image)
120     (define-key map "I" 'shr-insert-image)
121     (define-key map "u" 'shr-copy-url)
122     (define-key map "v" 'shr-browse-url)
123     (define-key map "o" 'shr-save-contents)
124     (define-key map "\r" 'shr-browse-url)
125     map))
126
127 ;; Public functions and commands.
128
129 (defun shr-visit-file (file)
130   (interactive "fHTML file name: ")
131   (pop-to-buffer "*html*")
132   (erase-buffer)
133   (shr-insert-document
134    (with-temp-buffer
135      (insert-file-contents file)
136      (libxml-parse-html-region (point-min) (point-max)))))
137
138 ;;;###autoload
139 (defun shr-insert-document (dom)
140   (setq shr-content-cache nil)
141   (let ((shr-state nil)
142         (shr-start nil)
143         (shr-base nil)
144         (shr-width (or shr-width (window-width))))
145     (shr-descend (shr-transform-dom dom))))
146
147 (defun shr-copy-url ()
148   "Copy the URL under point to the kill ring.
149 If called twice, then try to fetch the URL and see whether it
150 redirects somewhere else."
151   (interactive)
152   (let ((url (get-text-property (point) 'shr-url)))
153     (cond
154      ((not url)
155       (message "No URL under point"))
156      ;; Resolve redirected URLs.
157      ((equal url (car kill-ring))
158       (url-retrieve
159        url
160        (lambda (a)
161          (when (and (consp a)
162                     (eq (car a) :redirect))
163            (with-temp-buffer
164              (insert (cadr a))
165              (goto-char (point-min))
166              ;; Remove common tracking junk from the URL.
167              (when (re-search-forward ".utm_.*" nil t)
168                (replace-match "" t t))
169              (message "Copied %s" (buffer-string))
170              (copy-region-as-kill (point-min) (point-max)))))))
171      ;; Copy the URL to the kill ring.
172      (t
173       (with-temp-buffer
174         (insert url)
175         (copy-region-as-kill (point-min) (point-max))
176         (message "Copied %s" url))))))
177
178 (defun shr-show-alt-text ()
179   "Show the ALT text of the image under point."
180   (interactive)
181   (let ((text (get-text-property (point) 'shr-alt)))
182     (if (not text)
183         (message "No image under point")
184       (message "%s" text))))
185
186 (defun shr-browse-image (&optional copy-url)
187   "Browse the image under point.
188 If COPY-URL (the prefix if called interactively) is non-nil, copy
189 the URL of the image to the kill buffer instead."
190   (interactive "P")
191   (let ((url (get-text-property (point) 'image-url)))
192     (cond
193      ((not url)
194       (message "No image under point"))
195      (copy-url
196       (with-temp-buffer
197         (insert url)
198         (copy-region-as-kill (point-min) (point-max))
199         (message "Copied %s" url)))
200      (t
201       (message "Browsing %s..." url)
202       (browse-url url)))))
203
204 (defun shr-insert-image ()
205   "Insert the image under point into the buffer."
206   (interactive)
207   (let ((url (get-text-property (point) 'image-url)))
208     (if (not url)
209         (message "No image under point")
210       (message "Inserting %s..." url)
211       (url-retrieve url 'shr-image-fetched
212                     (list (current-buffer) (1- (point)) (point-marker))
213                     t))))
214
215 ;;; Utility functions.
216
217 (defun shr-transform-dom (dom)
218   (let ((result (list (pop dom))))
219     (dolist (arg (pop dom))
220       (push (cons (intern (concat ":" (symbol-name (car arg))) obarray)
221                   (cdr arg))
222             result))
223     (dolist (sub dom)
224       (if (stringp sub)
225           (push (cons 'text sub) result)
226         (push (shr-transform-dom sub) result)))
227     (nreverse result)))
228
229 (defun shr-descend (dom)
230   (let ((function (intern (concat "shr-tag-" (symbol-name (car dom))) obarray))
231         (style (cdr (assq :style (cdr dom))))
232         (shr-stylesheet shr-stylesheet)
233         (start (point)))
234     (when style
235       (if (string-match "color" style)
236           (setq shr-stylesheet (nconc (shr-parse-style style)
237                                       shr-stylesheet))
238         (setq style nil)))
239     (if (fboundp function)
240         (funcall function (cdr dom))
241       (shr-generic (cdr dom)))
242     ;; If style is set, then this node has set the color.
243     (when style
244       (shr-colorize-region start (point)
245                            (cdr (assq 'color shr-stylesheet))
246                            (cdr (assq 'background-color shr-stylesheet))))))
247
248 (defun shr-generic (cont)
249   (dolist (sub cont)
250     (cond
251      ((eq (car sub) 'text)
252       (shr-insert (cdr sub)))
253      ((listp (cdr sub))
254       (shr-descend sub)))))
255
256 (defmacro shr-char-breakable-p (char)
257   "Return non-nil if a line can be broken before and after CHAR."
258   `(aref fill-find-break-point-function-table ,char))
259 (defmacro shr-char-nospace-p (char)
260   "Return non-nil if no space is required before and after CHAR."
261   `(aref fill-nospace-between-words-table ,char))
262
263 ;; KINSOKU is a Japanese word meaning a rule that should not be violated.
264 ;; In Emacs, it is a term used for characters, e.g. punctuation marks,
265 ;; parentheses, and so on, that should not be placed in the beginning
266 ;; of a line or the end of a line.
267 (defmacro shr-char-kinsoku-bol-p (char)
268   "Return non-nil if a line ought not to begin with CHAR."
269   `(aref (char-category-set ,char) ?>))
270 (defmacro shr-char-kinsoku-eol-p (char)
271   "Return non-nil if a line ought not to end with CHAR."
272   `(aref (char-category-set ,char) ?<))
273 (unless (shr-char-kinsoku-bol-p (make-char 'japanese-jisx0208 33 35))
274   (load "kinsoku" nil t))
275
276 (defun shr-insert (text)
277   (when (and (eq shr-state 'image)
278              (not (string-match "\\`[ \t\n]+\\'" text)))
279     (insert "\n")
280     (setq shr-state nil))
281   (cond
282    ((eq shr-folding-mode 'none)
283     (insert text))
284    (t
285     (when (and (string-match "\\`[ \t\n]" text)
286                (not (bolp))
287                (not (eq (char-after (1- (point))) ? )))
288       (insert " "))
289     (dolist (elem (split-string text))
290       (when (and (bolp)
291                  (> shr-indentation 0))
292         (shr-indent))
293       ;; No space is needed behind a wide character categorized as
294       ;; kinsoku-bol, between characters both categorized as nospace,
295       ;; or at the beginning of a line.
296       (let (prev)
297         (when (and (> (current-column) shr-indentation)
298                    (eq (preceding-char) ? )
299                    (or (= (line-beginning-position) (1- (point)))
300                        (and (shr-char-breakable-p
301                              (setq prev (char-after (- (point) 2))))
302                             (shr-char-kinsoku-bol-p prev))
303                        (and (shr-char-nospace-p prev)
304                             (shr-char-nospace-p (aref elem 0)))))
305           (delete-char -1)))
306       ;; The shr-start is a special variable that is used to pass
307       ;; upwards the first point in the buffer where the text really
308       ;; starts.
309       (unless shr-start
310         (setq shr-start (point)))
311       (insert elem)
312       (let (found)
313         (while (and (> (current-column) shr-width)
314                     (progn
315                       (setq found (shr-find-fill-point))
316                       (not (eolp))))
317           (when (eq (preceding-char) ? )
318             (delete-char -1))
319           (insert "\n")
320           (unless found
321             (put-text-property (1- (point)) (point) 'shr-break t)
322             ;; No space is needed at the beginning of a line.
323             (when (eq (following-char) ? )
324               (delete-char 1)))
325           (when (> shr-indentation 0)
326             (shr-indent))
327           (end-of-line))
328         (insert " ")))
329     (unless (string-match "[ \t\n]\\'" text)
330       (delete-char -1)))))
331
332 (defun shr-find-fill-point ()
333   (when (> (move-to-column shr-width) shr-width)
334     (backward-char 1))
335   (let ((bp (point))
336         failed)
337     (while (not (or (setq failed (= (current-column) shr-indentation))
338                     (eq (preceding-char) ? )
339                     (eq (following-char) ? )
340                     (shr-char-breakable-p (preceding-char))
341                     (shr-char-breakable-p (following-char))
342                     (if (eq (preceding-char) ?')
343                         (not (memq (char-after (- (point) 2))
344                                    (list nil ?\n ? )))
345                       (and (shr-char-kinsoku-bol-p (preceding-char))
346                            (shr-char-breakable-p (following-char))
347                            (not (shr-char-kinsoku-bol-p (following-char)))))
348                     (shr-char-kinsoku-eol-p (following-char))))
349       (backward-char 1))
350     (if (and (not (or failed (eolp)))
351              (eq (preceding-char) ?'))
352         (while (not (or (setq failed (eolp))
353                         (eq (following-char) ? )
354                         (shr-char-breakable-p (following-char))
355                         (shr-char-kinsoku-eol-p (following-char))))
356           (forward-char 1)))
357     (if failed
358         ;; There's no breakable point, so we give it up.
359         (let (found)
360           (goto-char bp)
361           (unless shr-kinsoku-shorten
362             (while (and (setq found (re-search-forward
363                                      "\\(\\c>\\)\\| \\|\\c<\\|\\c|"
364                                      (line-end-position) 'move))
365                         (eq (preceding-char) ?')))
366             (if (and found (not (match-beginning 1)))
367                 (goto-char (match-beginning 0)))))
368       (or
369        (eolp)
370        ;; Don't put kinsoku-bol characters at the beginning of a line,
371        ;; or kinsoku-eol characters at the end of a line.
372        (cond
373         (shr-kinsoku-shorten
374          (while (and (not (memq (preceding-char) (list ?\C-@ ?\n ? )))
375                      (shr-char-kinsoku-eol-p (preceding-char)))
376            (backward-char 1))
377          (when (setq failed (= (current-column) shr-indentation))
378            ;; There's no breakable point that doesn't violate kinsoku,
379            ;; so we look for the second best position.
380            (while (and (progn
381                          (forward-char 1)
382                          (<= (current-column) shr-width))
383                        (progn
384                          (setq bp (point))
385                          (shr-char-kinsoku-eol-p (following-char)))))
386            (goto-char bp)))
387         ((shr-char-kinsoku-eol-p (preceding-char))
388          (if (shr-char-kinsoku-eol-p (following-char))
389              ;; There are consecutive kinsoku-eol characters.
390              (setq failed t)
391            (let ((count 4))
392              (while
393                  (progn
394                    (backward-char 1)
395                    (and (> (setq count (1- count)) 0)
396                         (not (memq (preceding-char) (list ?\C-@ ?\n ? )))
397                         (or (shr-char-kinsoku-eol-p (preceding-char))
398                             (shr-char-kinsoku-bol-p (following-char)))))))
399            (if (setq failed (= (current-column) shr-indentation))
400                ;; There's no breakable point that doesn't violate kinsoku,
401                ;; so we go to the second best position.
402                (if (looking-at "\\(\\c<+\\)\\c<")
403                    (goto-char (match-end 1))
404                  (forward-char 1)))))
405         (t
406          (if (shr-char-kinsoku-bol-p (preceding-char))
407              ;; There are consecutive kinsoku-bol characters.
408              (setq failed t)
409            (let ((count 4))
410              (while (and (>= (setq count (1- count)) 0)
411                          (shr-char-kinsoku-bol-p (following-char))
412                          (shr-char-breakable-p (following-char)))
413                (forward-char 1))))))
414        (when (eq (following-char) ? )
415          (forward-char 1))))
416     (not failed)))
417
418 (defun shr-expand-url (url)
419   (cond
420    ;; Absolute URL.
421    ((or (not url)
422         (string-match "\\`[a-z]*:" url)
423         (not shr-base))
424     url)
425    ((and (not (string-match "/\\'" shr-base))
426          (not (string-match "\\`/" url)))
427     (concat shr-base "/" url))
428    (t
429     (concat shr-base url))))
430
431 (defun shr-ensure-newline ()
432   (unless (zerop (current-column))
433     (insert "\n")))
434
435 (defun shr-ensure-paragraph ()
436   (unless (bobp)
437     (if (<= (current-column) shr-indentation)
438         (unless (save-excursion
439                   (forward-line -1)
440                   (looking-at " *$"))
441           (insert "\n"))
442       (if (save-excursion
443             (beginning-of-line)
444             (looking-at " *$"))
445           (insert "\n")
446         (insert "\n\n")))))
447
448 (defun shr-indent ()
449   (when (> shr-indentation 0)
450     (insert (make-string shr-indentation ? ))))
451
452 (defun shr-fontize-cont (cont &rest types)
453   (let (shr-start)
454     (shr-generic cont)
455     (dolist (type types)
456       (shr-add-font (or shr-start (point)) (point) type))))
457
458 ;; Add an overlay in the region, but avoid putting the font properties
459 ;; on blank text at the start of the line, and the newline at the end,
460 ;; to avoid ugliness.
461 (defun shr-add-font (start end type)
462   (save-excursion
463     (goto-char start)
464     (while (< (point) end)
465       (when (bolp)
466         (skip-chars-forward " "))
467       (let ((overlay (make-overlay (point) (min (line-end-position) end))))
468         (overlay-put overlay 'face type))
469       (if (< (line-end-position) end)
470           (forward-line 1)
471         (goto-char end)))))
472
473 (defun shr-browse-url ()
474   "Browse the URL under point."
475   (interactive)
476   (let ((url (get-text-property (point) 'shr-url)))
477     (cond
478      ((not url)
479       (message "No link under point"))
480      ((string-match "^mailto:" url)
481       (browse-url-mailto url))
482      (t
483       (browse-url url)))))
484
485 (defun shr-save-contents (directory)
486   "Save the contents from URL in a file."
487   (interactive "DSave contents of URL to directory: ")
488   (let ((url (get-text-property (point) 'shr-url)))
489     (if (not url)
490         (message "No link under point")
491       (url-retrieve (shr-encode-url url)
492                     'shr-store-contents (list url directory)))))
493
494 (defun shr-store-contents (status url directory)
495   (unless (plist-get status :error)
496     (when (or (search-forward "\n\n" nil t)
497               (search-forward "\r\n\r\n" nil t))
498       (write-region (point) (point-max)
499                     (expand-file-name (file-name-nondirectory url)
500                                       directory)))))
501
502 (defun shr-image-fetched (status buffer start end)
503   (when (and (buffer-name buffer)
504              (not (plist-get status :error)))
505     (url-store-in-cache (current-buffer))
506     (when (or (search-forward "\n\n" nil t)
507               (search-forward "\r\n\r\n" nil t))
508       (let ((data (buffer-substring (point) (point-max))))
509         (with-current-buffer buffer
510           (save-excursion
511             (let ((alt (buffer-substring start end))
512                   (inhibit-read-only t))
513               (delete-region start end)
514               (goto-char start)
515               (funcall shr-put-image-function data alt)))))))
516   (kill-buffer (current-buffer)))
517
518 (defun shr-put-image (data alt)
519   "Put image DATA with a string ALT.  Return image."
520   (if (display-graphic-p)
521       (let ((image (ignore-errors
522                      (shr-rescale-image data))))
523         (when image
524           ;; When inserting big-ish pictures, put them at the
525           ;; beginning of the line.
526           (when (and (> (current-column) 0)
527                      (> (car (image-size image t)) 400))
528             (insert "\n"))
529           (insert-image image (or alt "*"))
530           (when (image-animated-p image)
531             (image-animate image)))
532         image)
533     (insert alt)))
534
535 (defun shr-rescale-image (data)
536   (if (or (not (fboundp 'imagemagick-types))
537           (not (get-buffer-window (current-buffer))))
538       (create-image data nil t
539                     :ascent 100)
540     (let* ((image (create-image data nil t :ascent 100))
541            (size (image-size image t))
542            (width (car size))
543            (height (cdr size))
544            (edges (window-inside-pixel-edges
545                    (get-buffer-window (current-buffer))))
546            (window-width (truncate (* shr-max-image-proportion
547                                       (- (nth 2 edges) (nth 0 edges)))))
548            (window-height (truncate (* shr-max-image-proportion
549                                        (- (nth 3 edges) (nth 1 edges)))))
550            scaled-image)
551       (when (> height window-height)
552         (setq image (or (create-image data 'imagemagick t
553                                       :height window-height)
554                         image))
555         (setq size (image-size image t)))
556       (when (> (car size) window-width)
557         (setq image (or
558                      (create-image data 'imagemagick t
559                                    :width window-width
560                                    :ascent 100)
561                      image)))
562       image)))
563
564 ;; url-cache-extract autoloads url-cache.
565 (declare-function url-cache-create-filename "url-cache" (url))
566 (autoload 'mm-disable-multibyte "mm-util")
567 (autoload 'browse-url-mailto "browse-url")
568
569 (defun shr-get-image-data (url)
570   "Get image data for URL.
571 Return a string with image data."
572   (with-temp-buffer
573     (mm-disable-multibyte)
574     (when (ignore-errors
575             (url-cache-extract (url-cache-create-filename (shr-encode-url url)))
576             t)
577       (when (or (search-forward "\n\n" nil t)
578                 (search-forward "\r\n\r\n" nil t))
579         (buffer-substring (point) (point-max))))))
580
581 (defun shr-image-displayer (content-function)
582   "Return a function to display an image.
583 CONTENT-FUNCTION is a function to retrieve an image for a cid url that
584 is an argument.  The function to be returned takes three arguments URL,
585 START, and END.  Note that START and END should be merkers."
586   `(lambda (url start end)
587      (when url
588        (if (string-match "\\`cid:" url)
589            ,(when content-function
590               `(let ((image (funcall ,content-function
591                                      (substring url (match-end 0)))))
592                  (when image
593                    (goto-char start)
594                    (funcall shr-put-image-function
595                             image (buffer-substring start end))
596                    (delete-region (point) end))))
597          (url-retrieve url 'shr-image-fetched
598                        (list (current-buffer) start end)
599                        t)))))
600
601 (defun shr-heading (cont &rest types)
602   (shr-ensure-paragraph)
603   (apply #'shr-fontize-cont cont types)
604   (shr-ensure-paragraph))
605
606 (autoload 'widget-convert-button "wid-edit")
607
608 (defun shr-urlify (start url &optional title)
609   (widget-convert-button
610    'url-link start (point)
611    :help-echo (if title (format "%s (%s)" url title) url)
612    :keymap shr-map
613    url)
614   (shr-add-font start (point) 'shr-link)
615   (put-text-property start (point) 'shr-url url))
616
617 (defun shr-encode-url (url)
618   "Encode URL."
619   (browse-url-url-encode-chars url "[)$ ]"))
620
621 (autoload 'shr-color-visible "shr-color")
622 (autoload 'shr-color->hexadecimal "shr-color")
623
624 (defun shr-color-check (fg bg)
625   "Check that FG is visible on BG.
626 Returns (fg bg) with corrected values.
627 Returns nil if the colors that would be used are the default
628 ones, in case fg and bg are nil."
629   (when (or fg bg)
630     (let ((fixed (cond ((null fg) 'fg)
631                        ((null bg) 'bg))))
632       ;; Convert colors to hexadecimal, or set them to default.
633       (let ((fg (or (shr-color->hexadecimal fg)
634                     (frame-parameter nil 'foreground-color)))
635             (bg (or (shr-color->hexadecimal bg)
636                     (frame-parameter nil 'background-color))))
637         (cond ((eq fixed 'bg)
638                ;; Only return the new fg
639                (list nil (cadr (shr-color-visible bg fg t))))
640               ((eq fixed 'fg)
641                ;; Invert args and results and return only the new bg
642                (list (cadr (shr-color-visible fg bg t)) nil))
643               (t
644                (shr-color-visible bg fg)))))))
645
646 (defun shr-colorize-region (start end fg &optional bg)
647   (when (or fg bg)
648     (let ((new-colors (shr-color-check fg bg)))
649       (when new-colors
650         (when fg
651           (shr-put-color start end :foreground (cadr new-colors)))
652         (when bg
653           (shr-put-color start end :background (car new-colors))))
654       new-colors)))
655
656 ;; Put a color in the region, but avoid putting colors on blank
657 ;; text at the start of the line, and the newline at the end, to avoid
658 ;; ugliness.  Also, don't overwrite any existing color information,
659 ;; since this can be called recursively, and we want the "inner" color
660 ;; to win.
661 (defun shr-put-color (start end type color)
662   (save-excursion
663     (goto-char start)
664     (while (< (point) end)
665       (when (and (bolp)
666                  (not (eq type :background)))
667         (skip-chars-forward " "))
668       (when (> (line-end-position) (point))
669         (shr-put-color-1 (point) (min (line-end-position) end) type color))
670       (if (< (line-end-position) end)
671           (forward-line 1)
672         (goto-char end)))
673     (when (and (eq type :background)
674                (= shr-table-depth 0))
675       (shr-expand-newlines start end color))))
676
677 (defun shr-expand-newlines (start end color)
678   (save-restriction
679     ;; Skip past all white space at the start and ends.
680     (goto-char start)
681     (skip-chars-forward " \t\n")
682     (beginning-of-line)
683     (setq start (point))
684     (goto-char end)
685     (skip-chars-backward " \t\n")
686     (forward-line 1)
687     (setq end (point))
688     (narrow-to-region start end)
689     (let ((width (shr-natural-width))
690           column)
691       (goto-char (point-min))
692       (while (not (eobp))
693         (end-of-line)
694         (when (and (< (setq column (current-column)) width)
695                    (< (setq column (shr-previous-newline-padding-width column))
696                       width))
697           (let ((overlay (make-overlay (point) (1+ (point)))))
698             (overlay-put overlay 'before-string
699                          (concat
700                           (mapconcat
701                            (lambda (overlay)
702                              (let ((string (plist-get
703                                             (overlay-properties overlay)
704                                             'before-string)))
705                                (if (not string)
706                                    ""
707                                  (overlay-put overlay 'before-string "")
708                                  string)))
709                            (overlays-at (point))
710                            "")
711                           (propertize (make-string (- width column) ? )
712                                       'face (list :background color))))))
713         (forward-line 1)))))
714
715 (defun shr-previous-newline-padding-width (width)
716   (let ((overlays (overlays-at (point)))
717         (previous-width 0))
718     (if (null overlays)
719         width
720       (dolist (overlay overlays)
721         (setq previous-width
722               (+ previous-width
723                  (length (plist-get (overlay-properties overlay)
724                                     'before-string)))))
725       (+ width previous-width))))
726
727 (defun shr-put-color-1 (start end type color)
728   (let* ((old-props (get-text-property start 'face))
729          (do-put (and (listp old-props)
730                       (not (memq type old-props))))
731          change)
732     (while (< start end)
733       (setq change (next-single-property-change start 'face nil end))
734       (when do-put
735         (put-text-property start change 'face
736                            (nconc (list type color) old-props)))
737       (setq old-props (get-text-property change 'face))
738       (setq do-put (and (listp old-props)
739                         (not (memq type old-props))))
740       (setq start change))
741     (when (and do-put
742                (> end start))
743       (put-text-property start end 'face
744                          (nconc (list type color old-props))))))
745
746 ;;; Tag-specific rendering rules.
747
748 (defun shr-tag-body (cont)
749   (let* ((start (point))
750          (fgcolor (cdr (or (assq :fgcolor cont)
751                            (assq :text cont))))
752          (bgcolor (cdr (assq :bgcolor cont)))
753          (shr-stylesheet (list (cons 'color fgcolor)
754                                (cons 'background-color bgcolor))))
755     (shr-generic cont)
756     (shr-colorize-region start (point) fgcolor bgcolor)))
757
758 (defun shr-tag-style (cont)
759   )
760
761 (defun shr-tag-script (cont)
762   )
763
764 (defun shr-tag-sup (cont)
765   (let ((start (point)))
766     (shr-generic cont)
767     (put-text-property start (point) 'display '(raise 0.5))))
768
769 (defun shr-tag-sub (cont)
770   (let ((start (point)))
771     (shr-generic cont)
772     (put-text-property start (point) 'display '(raise -0.5))))
773
774 (defun shr-tag-label (cont)
775   (shr-generic cont)
776   (shr-ensure-paragraph))
777
778 (defun shr-tag-p (cont)
779   (shr-ensure-paragraph)
780   (shr-indent)
781   (shr-generic cont)
782   (shr-ensure-paragraph))
783
784 (defun shr-tag-div (cont)
785   (shr-ensure-newline)
786   (shr-indent)
787   (shr-generic cont)
788   (shr-ensure-newline))
789
790 (defun shr-tag-s (cont)
791   (shr-fontize-cont cont 'shr-strike-through))
792
793 (defun shr-tag-del (cont)
794   (shr-fontize-cont cont 'shr-strike-through))
795
796 (defun shr-tag-b (cont)
797   (shr-fontize-cont cont 'bold))
798
799 (defun shr-tag-i (cont)
800   (shr-fontize-cont cont 'italic))
801
802<