* dgnushack.el: Autoload sha1 on XEmacs.
[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 nil 60)))
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 (defun shr-tag-em (cont)
803   (shr-fontize-cont cont 'bold))
804
805 (defun shr-tag-strong (cont)
806   (shr-fontize-cont cont 'bold))
807
808 (defun shr-tag-u (cont)
809   (shr-fontize-cont cont 'underline))
810
811 (defun shr-parse-style (style)
812   (when style
813     (save-match-data
814       (when (string-match "\n" style)
815         (setq style (replace-match " " t t style))))
816     (let ((plist nil))
817       (dolist (elem (split-string style ";"))
818         (when elem
819           (setq elem (split-string elem ":"))
820           (when (and (car elem)
821                      (cadr elem))
822             (let ((name (replace-regexp-in-string "^ +\\| +$" "" (car elem)))
823                   (value (replace-regexp-in-string "^ +\\| +$" "" (cadr elem))))
824               (when (string-match " *!important\\'" value)
825                 (setq value (substring value 0 (match-beginning 0))))
826               (push (cons (intern name obarray)
827                           value)
828                     plist)))))
829       plist)))
830
831 (defun shr-tag-base (cont)
832   (setq shr-base (cdr (assq :href cont))))
833
834 (defun shr-tag-a (cont)
835   (let ((url (cdr (assq :href cont)))
836         (title (cdr (assq :title cont)))
837         (start (point))
838         shr-start)
839     (shr-generic cont)
840     (shr-urlify (or shr-start start) (shr-expand-url url) title)))
841
842 (defun shr-tag-object (cont)
843   (let ((start (point))
844         url)
845     (dolist (elem cont)
846       (when (eq (car elem) 'embed)
847         (setq url (or url (cdr (assq :src (cdr elem))))))
848       (when (and (eq (car elem) 'param)
849                  (equal (cdr (assq :name (cdr elem))) "movie"))
850         (setq url (or url (cdr (assq :value (cdr elem)))))))
851     (when url
852       (shr-insert " [multimedia] ")
853       (shr-urlify start (shr-expand-url url)))
854     (shr-generic cont)))
855
856 (defun shr-tag-video (cont)
857   (let ((image (cdr (assq :poster cont)))
858         (url (cdr (assq :src cont)))
859         (start (point)))
860     (shr-tag-img nil image)
861     (shr-urlify start (shr-expand-url url))))
862
863 (defun shr-tag-img (cont &optional url)
864   (when (or url
865             (and cont
866                  (cdr (assq :src cont))))
867     (when (and (> (current-column) 0)
868                (not (eq shr-state 'image)))
869       (insert "\n"))
870     (let ((alt (cdr (assq :alt cont)))
871           (url (shr-expand-url (or url (cdr (assq :src cont))))))
872       (let ((start (point-marker)))
873         (when (zerop (length alt))
874           (setq alt "*"))
875         (cond
876          ((or (member (cdr (assq :height cont)) '("0" "1"))
877               (member (cdr (assq :width cont)) '("0" "1")))
878           ;; Ignore zero-sized or single-pixel images.
879           )
880          ((and (not shr-inhibit-images)
881                (string-match "\\`cid:" url))
882           (let ((url (substring url (match-end 0)))
883                 image)
884             (if (or (not shr-content-function)
885                     (not (setq image (funcall shr-content-function url))))
886                 (insert alt)
887               (funcall shr-put-image-function image alt))))
888          ((or shr-inhibit-images
889               (and shr-blocked-images
890                    (string-match shr-blocked-images url)))
891           (setq shr-start (point))
892           (let ((shr-state 'space))
893             (if (> (string-width alt) 8)
894                 (shr-insert (truncate-string-to-width alt 8))
895               (shr-insert alt))))
896          ((url-is-cached (shr-encode-url url))
897           (funcall shr-put-image-function (shr-get-image-data url) alt))
898          (t
899           (insert alt)
900           (funcall
901            (if (fboundp 'url-queue-retrieve)
902                'url-queue-retrieve
903              'url-retrieve)
904            (shr-encode-url url) 'shr-image-fetched
905            (list (current-buffer) start (point-marker))
906            t)))
907         (put-text-property start (point) 'keymap shr-map)
908         (put-text-property start (point) 'shr-alt alt)
909         (put-text-property start (point) 'image-url url)
910         (put-text-property start (point) 'image-displayer
911                            (shr-image-displayer shr-content-function))
912         (put-text-property start (point) 'help-echo alt)
913         (setq shr-state 'image)))))
914
915 (defun shr-tag-pre (cont)
916   (let ((shr-folding-mode 'none))
917     (shr-ensure-newline)
918     (shr-indent)
919     (shr-generic cont)
920     (shr-ensure-newline)))
921
922 (defun shr-tag-blockquote (cont)
923   (shr-ensure-paragraph)
924   (shr-indent)
925   (let ((shr-indentation (+ shr-indentation 4)))
926     (shr-generic cont))
927   (shr-ensure-paragraph))
928
929 (defun shr-tag-ul (cont)
930   (shr-ensure-paragraph)
931   (let ((shr-list-mode 'ul))
932     (shr-generic cont))
933   (shr-ensure-paragraph))
934
935 (defun shr-tag-ol (cont)
936   (shr-ensure-paragraph)
937   (let ((shr-list-mode 1))
938     (shr-generic cont))
939   (shr-ensure-paragraph))
940
941 (defun shr-tag-li (cont)
942   (shr-ensure-paragraph)
943   (shr-indent)
944   (let* ((bullet
945           (if (numberp shr-list-mode)
946               (prog1
947                   (format "%d " shr-list-mode)
948                 (setq shr-list-mode (1+ shr-list-mode)))
949             "* "))
950          (shr-indentation (+ shr-indentation (length bullet))))
951     (insert bullet)
952     (shr-generic cont)))
953
954 (defun shr-tag-br (cont)
955   (unless (bobp)
956     (insert "\n")
957     (shr-indent))
958   (shr-generic cont))
959
960 (defun shr-tag-h1 (cont)
961   (shr-heading cont 'bold 'underline))
962
963 (defun shr-tag-h2 (cont)
964   (shr-heading cont 'bold))
965
966 (defun shr-tag-h3 (cont)
967   (shr-heading cont 'italic))
968
969 (defun shr-tag-h4 (cont)
970   (shr-heading cont))
971
972 (defun shr-tag-h5 (cont)
973   (shr-heading cont))
974
975 (defun shr-tag-h6 (cont)
976   (shr-heading cont))
977
978 (defun shr-tag-hr (cont)
979   (shr-ensure-newline)
980   (insert (make-string shr-width shr-hr-line) "\n"))
981
982 (defun shr-tag-title (cont)
983   (shr-heading cont 'bold 'underline))
984
985 (defun shr-tag-font (cont)
986   (let* ((start (point))
987          (color (cdr (assq :color cont)))
988          (shr-stylesheet (nconc (list (cons 'color color))
989                                 shr-stylesheet)))
990     (shr-generic cont)
991     (when color
992       (shr-colorize-region start (point) color
993                            (cdr (assq 'background-color shr-stylesheet))))))
994
995 ;;; Table rendering algorithm.
996
997 ;; Table rendering is the only complicated thing here.  We do this by
998 ;; first counting how many TDs there are in each TR, and registering
999 ;; how wide they think they should be ("width=45%", etc).  Then we
1000 ;; render each TD separately (this is done in temporary buffers, so
1001 ;; that we can use all the rendering machinery as if we were in the
1002 ;; main buffer).  Now we know how much space each TD really takes, so
1003 ;; we then render everything again with the new widths, and finally
1004 ;; insert all these boxes into the main buffer.
1005 (defun shr-tag-table-1 (cont)
1006   (setq cont (or (cdr (assq 'tbody cont))
1007                  cont))
1008   (let* ((shr-inhibit-images t)
1009          (shr-table-depth (1+ shr-table-depth))
1010          (shr-kinsoku-shorten t)
1011          ;; Find all suggested widths.
1012          (columns (shr-column-specs cont))
1013          ;; Compute how many characters wide each TD should be.
1014          (suggested-widths (shr-pro-rate-columns columns))
1015          ;; Do a "test rendering" to see how big each TD is (this can
1016          ;; be smaller (if there's little text) or bigger (if there's
1017          ;; unbreakable text).
1018          (sketch (shr-make-table cont suggested-widths))
1019          (sketch-widths (shr-table-widths sketch suggested-widths)))
1020     ;; This probably won't work very well.
1021     (when (> (+ (loop for width across sketch-widths
1022                       summing (1+ width))
1023                 shr-indentation 1)
1024              (frame-width))
1025       (setq truncate-lines t))
1026     ;; Then render the table again with these new "hard" widths.
1027     (shr-insert-table (shr-make-table cont sketch-widths t) sketch-widths))
1028   ;; Finally, insert all the images after the table.  The Emacs buffer
1029   ;; model isn't strong enough to allow us to put the images actually
1030   ;; into the tables.
1031   (when (zerop shr-table-depth)
1032     (dolist (elem (shr-find-elements cont 'img))
1033       (shr-tag-img (cdr elem)))))
1034
1035 (defun shr-tag-table (cont)
1036   (shr-ensure-paragraph)
1037   (let* ((caption (cdr (assq 'caption cont)))
1038          (header (cdr (assq 'thead cont)))
1039          (body (or (cdr (assq 'tbody cont)) cont))
1040          (footer (cdr (assq 'tfoot cont)))
1041          (bgcolor (cdr (assq :bgcolor cont)))
1042          (start (point))
1043          (shr-stylesheet (nconc (list (cons 'background-color bgcolor))
1044                                 shr-stylesheet))
1045          (nheader (if header (shr-max-columns header)))
1046          (nbody (if body (shr-max-columns body)))
1047          (nfooter (if footer (shr-max-columns footer))))
1048     (shr-tag-table-1
1049      (nconc
1050       (if caption `((tr (td ,@caption))))
1051       (if header
1052           (if footer
1053               ;; hader + body + footer
1054               (if (= nheader nbody)
1055                   (if (= nbody nfooter)
1056                       `((tr (td (table (tbody ,@header ,@body ,@footer)))))
1057                     (nconc `((tr (td (table (tbody ,@header ,@body)))))
1058                            (if (= nfooter 1)
1059                                footer
1060                              `((tr (td (table (tbody ,@footer))))))))
1061                 (nconc `((tr (td (table (tbody ,@header)))))
1062                        (if (= nbody nfooter)
1063                            `((tr (td (table (tbody ,@body ,@footer)))))
1064                          (nconc `((tr (td (table (tbody ,@body)))))
1065                                 (if (= nfooter 1)
1066                                     footer
1067                                   `((tr (td (table (tbody ,@footer))))))))))
1068             ;; header + body
1069             (if (= nheader nbody)
1070                 `((tr (td (table (tbody ,@header ,@body)))))
1071               (if (= nheader 1)
1072                   `(,@header (tr (td (table (tbody ,@body)))))
1073                 `((tr (td (table (tbody ,@header))))
1074                   (tr (td (table (tbody ,@body))))))))
1075         (if footer
1076             ;; body + footer
1077             (if (= nbody nfooter)
1078                 `((tr (td (table (tbody ,@body ,@footer)))))
1079               (nconc `((tr (td (table (tbody ,@body)))))
1080                      (if (= nfooter 1)
1081                          footer
1082                        `((tr (td (table (tbody ,@footer))))))))
1083           (if caption
1084               `((tr (td (table (tbody ,@body)))))
1085             body)))))
1086     (when bgcolor
1087       (shr-colorize-region start (point) (cdr (assq 'color shr-stylesheet))
1088                            bgcolor))))
1089
1090 (defun shr-find-elements (cont type)
1091   (let (result)
1092     (dolist (elem cont)
1093       (cond ((eq (car elem) type)
1094              (push elem result))
1095             ((consp (cdr elem))
1096              (setq result (nconc (shr-find-elements (cdr elem) type) result)))))
1097     (nreverse result)))
1098
1099 (defun shr-insert-table (table widths)
1100   (shr-insert-table-ruler widths)
1101   (dolist (row table)
1102     (let ((start (point))
1103           (height (let ((max 0))
1104                     (dolist (column row)
1105                       (setq max (max max (cadr column))))
1106                     max)))
1107       (dotimes (i height)
1108         (shr-indent)
1109         (insert shr-table-vertical-line "\n"))
1110       (dolist (column row)
1111         (goto-char start)
1112         (let ((lines (nth 2 column))
1113               (overlay-lines (nth 3 column))
1114               overlay overlay-line)
1115           (dolist (line lines)
1116             (setq overlay-line (pop overlay-lines))
1117             (end-of-line)
1118             (insert line shr-table-vertical-line)
1119             (dolist (overlay overlay-line)
1120               (let ((o (make-overlay (- (point) (nth 0 overlay) 1)
1121                                      (- (point) (nth 1 overlay) 1)))
1122                     (properties (nth 2 overlay)))
1123                 (while properties
1124                   (overlay-put o (pop properties) (pop properties)))))
1125             (forward-line 1))
1126           ;; Add blank lines at padding at the bottom of the TD,
1127           ;; possibly.
1128           (dotimes (i (- height (length lines)))
1129             (end-of-line)
1130             (let ((start (point)))
1131               (insert (make-string (string-width (car lines)) ? )
1132                       shr-table-vertical-line)
1133               (when (nth 4 column)
1134                 (shr-put-color start (1- (point)) :background (nth 4 column))))
1135             (forward-line 1)))))
1136     (shr-insert-table-ruler widths)))
1137
1138 (defun shr-insert-table-ruler (widths)
1139   (when (and (bolp)
1140              (> shr-indentation 0))
1141     (shr-indent))
1142   (insert shr-table-corner)
1143   (dotimes (i (length widths))
1144     (insert (make-string (aref widths i) shr-table-horizontal-line)
1145             shr-table-corner))
1146   (insert "\n"))
1147
1148 (defun shr-table-widths (table suggested-widths)
1149   (let* ((length (length suggested-widths))
1150          (widths (make-vector length 0))
1151          (natural-widths (make-vector length 0)))
1152     (dolist (row table)
1153       (let ((i 0))
1154         (dolist (column row)
1155           (aset widths i (max (aref widths i)
1156                               (car column)))
1157           (aset natural-widths i (max (aref natural-widths i)
1158                                       (cadr column)))
1159           (setq i (1+ i)))))
1160     (let ((extra (- (apply '+ (append suggested-widths nil))
1161                     (apply '+ (append widths nil))))
1162           (expanded-columns 0))
1163       (when (> extra 0)
1164         (dotimes (i length)
1165           ;; If the natural width is wider than the rendered width, we
1166           ;; want to allow the column to expand.
1167           (when (> (aref natural-widths i) (aref widths i))
1168             (setq expanded-columns (1+ expanded-columns))))
1169         (dotimes (i length)
1170           (when (> (aref natural-widths i) (aref widths i))
1171             (aset widths i (min
1172                             (1+ (aref natural-widths i))
1173                             (+ (/ extra expanded-columns)
1174                                (aref widths i))))))))
1175     widths))
1176
1177 (defun shr-make-table (cont widths &optional fill)
1178   (let ((trs nil))
1179     (dolist (row cont)
1180       (when (eq (car row) 'tr)
1181         (let ((tds nil)
1182               (columns (cdr row))
1183               (i 0)
1184               column)
1185           (while (< i (length widths))
1186             (setq column (pop columns))
1187             (when (or (memq (car column) '(td th))
1188                       (null column))
1189               (push (shr-render-td (cdr column) (aref widths i) fill)
1190                     tds)
1191               (setq i (1+ i))))
1192           (push (nreverse tds) trs))))
1193     (nreverse trs)))
1194
1195 (defun shr-render-td (cont width fill)
1196   (with-temp-buffer
1197     (let ((bgcolor (cdr (assq :bgcolor cont)))
1198           (fgcolor (cdr (assq :fgcolor cont)))
1199           (style (cdr (assq :style cont)))
1200           (shr-stylesheet shr-stylesheet)
1201           overlays actual-colors)
1202       (when style
1203         (setq style (and (string-match "color" style)
1204                          (shr-parse-style style))))
1205       (when bgcolor
1206         (setq style (nconc (list (cons 'background-color bgcolor)) style)))
1207       (when fgcolor
1208         (setq style (nconc (list (cons 'color fgcolor)) style)))
1209       (when style
1210         (setq shr-stylesheet (append style shr-stylesheet)))
1211       (let ((cache (cdr (assoc (cons width cont) shr-content-cache))))
1212         (if cache
1213             (progn
1214               (insert (car cache))
1215               (let ((end (length (car cache))))
1216                 (dolist (overlay (cadr cache))
1217                   (let ((new-overlay
1218                          (make-overlay (1+ (- end (nth 0 overlay)))
1219                                        (1+ (- end (nth 1 overlay)))))
1220                         (properties (nth 2 overlay)))
1221                     (while properties
1222                       (overlay-put new-overlay
1223                                    (pop properties) (pop properties)))))))
1224           (let ((shr-width width)
1225                 (shr-indentation 0))
1226             (shr-descend (cons 'td cont)))
1227           (delete-region
1228            (point)
1229            (+ (point)
1230               (skip-chars-backward " \t\n")))
1231           (push (list (cons width cont) (buffer-string)
1232                       (shr-overlays-in-region (point-min) (point-max)))
1233                 shr-content-cache)))
1234       (goto-char (point-min))
1235       (let ((max 0))
1236         (while (not (eobp))
1237           (end-of-line)
1238           (setq max (max max (current-column)))
1239           (forward-line 1))
1240         (when fill
1241           (goto-char (point-min))
1242           ;; If the buffer is totally empty, then put a single blank
1243           ;; line here.
1244           (if (zerop (buffer-size))
1245               (insert (make-string width ? ))
1246             ;; Otherwise, fill the buffer.
1247             (while (not (eobp))
1248               (end-of-line)
1249               (when (> (- width (current-column)) 0)
1250                 (insert (make-string (- width (current-column)) ? )))
1251               (forward-line 1)))
1252           (when style
1253             (setq actual-colors
1254                   (shr-colorize-region
1255                    (point-min) (point-max)
1256                    (cdr (assq 'color shr-stylesheet))
1257                    (cdr (assq 'background-color shr-stylesheet))))))
1258         (if fill
1259             (list max
1260                   (count-lines (point-min) (point-max))
1261                   (split-string (buffer-string) "\n")
1262                   (shr-collect-overlays)
1263                   (car actual-colors))
1264           (list max
1265                 (shr-natural-width)))))))
1266
1267 (defun shr-natural-width ()
1268   (goto-char (point-min))
1269   (let ((current 0)
1270         (max 0))
1271     (while (not (eobp))
1272       (end-of-line)
1273       (setq current (+ current (current-column)))
1274       (unless (get-text-property (point) 'shr-break)
1275         (setq max (max max current)
1276               current 0))
1277       (forward-line 1))
1278     max))
1279
1280 (defun shr-collect-overlays ()
1281   (save-excursion
1282     (goto-char (point-min))
1283     (let ((overlays nil))
1284       (while (not (eobp))
1285         (push (shr-overlays-in-region (point) (line-end-position))
1286               overlays)
1287         (forward-line 1))
1288       (nreverse overlays))))
1289
1290 (defun shr-overlays-in-region (start end)
1291   (let (result)
1292     (dolist (overlay (overlays-in start end))
1293       (push (list (if (> start (overlay-start overlay))
1294                       (- end start)
1295                     (- end (overlay-start overlay)))
1296                   (if (< end (overlay-end overlay))
1297                       0
1298                     (- end (overlay-end overlay)))
1299                   (overlay-properties overlay))
1300             result))
1301     (nreverse result)))
1302
1303 (defun shr-pro-rate-columns (columns)
1304   (let ((total-percentage 0)
1305         (widths (make-vector (length columns) 0)))
1306     (dotimes (i (length columns))
1307       (setq total-percentage (+ total-percentage (aref columns i))))
1308     (setq total-percentage (/ 1.0 total-percentage))
1309     (dotimes (i (length columns))
1310       (aset widths i (max (truncate (* (aref columns i)
1311                                        total-percentage
1312                                        (- shr-width (1+ (length columns)))))
1313                           10)))
1314     widths))
1315
1316 ;; Return a summary of the number and shape of the TDs in the table.
1317 (defun shr-column-specs (cont)
1318   (let ((columns (make-vector (shr-max-columns cont) 1)))
1319     (dolist (row cont)
1320       (when (eq (car row) 'tr)
1321         (let ((i 0))
1322           (dolist (column (cdr row))
1323             (when (memq (car column) '(td th))
1324               (let ((width (cdr (assq :width (cdr column)))))
1325                 (when (and width
1326                            (string-match "\\([0-9]+\\)%" width))
1327                   (aset columns i
1328                         (/ (string-to-number (match-string 1 width))
1329                            100.0))))
1330               (setq i (1+ i)))))))
1331     columns))
1332
1333 (defun shr-count (cont elem)
1334   (let ((i 0))
1335     (dolist (sub cont)
1336       (when (eq (car sub) elem)
1337         (setq i (1+ i))))
1338     i))
1339
1340 (defun shr-max-columns (cont)
1341   (let ((max 0))
1342     (dolist (row cont)
1343       (when (eq (car row) 'tr)
1344         (setq max (max max (+ (shr-count (cdr row) 'td)
1345                               (shr-count (cdr row) 'th))))))
1346     max))
1347
1348 (provide 'shr)
1349
1350 ;;; shr.el ends here