emacs-devel
[Top][All Lists]
Advanced

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

table.el downcase HTML tags


From: Tak Ota
Subject: table.el downcase HTML tags
Date: Tue, 30 May 2006 10:13:35 -0700 (PDT)

This has been requested for many times that HTML tags that table.el
generates to be downcased to be compatible with XHTML standard.  If no
one objects could someone check the following change into the
repository.  Thanks.

-Tak

2006-05-30  Takaaki Ota  <address@hidden>

        * textmodes/table.el: Convert all HTML tags to lower case for
        XHTML compatibility.


bash-3.1$ diff ../../../../d/pub/emacs/pure/emacs/lisp/textmodes/table.el 
table.el
9c9
< ;; Revised: Sat Aug 06 2005 19:42:54 (CEST)
---
> ;; Revised: Tue May 30 2006 10:01:43 (PDT)
3107c3107
<             (format "<TABLE %s>\n" table-html-table-attribute)
---
>             (format "<table %s>\n" table-html-table-attribute)
3110c3110
<                 (format "  <CAPTION>%s</CAPTION>\n" caption)
---
>                 (format "  <caption>%s</caption>\n" caption)
3134c3134
<       (insert "</TABLE>\n"))
---
>       (insert "</table>\n"))
3155c3155
<       (insert "  <TR>\n"))
---
>       (insert "  <tr>\n"))
3163c3163
<       (insert "  </TR>\n"))
---
>       (insert "  </tr>\n"))
3210c3210
<                                  "TH" "TD"))))
---
>                                  "th" "td"))))
3269c3269
<           (insert "<BR />")
---
>           (insert "<br />")




reply via email to

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