unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* table.el downcase HTML tags
@ 2006-05-30 17:13 Tak Ota
  2006-05-30 19:23 ` Mathias Dahl
  2006-05-31  8:00 ` Kim F. Storm
  0 siblings, 2 replies; 13+ messages in thread
From: Tak Ota @ 2006-05-30 17:13 UTC (permalink / raw)
  Cc: carsten.dominik

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  <Takaaki.Ota@am.sony.com>

	* 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 />")

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2006-05-31 15:10 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-30 17:13 table.el downcase HTML tags Tak Ota
2006-05-30 19:23 ` Mathias Dahl
2006-05-30 19:58   ` Lennart Borgman
2006-05-30 20:18     ` Ted Zlatanov
2006-05-30 22:08       ` Stuart D. Herring
2006-05-30 22:42         ` Lennart Borgman
2006-05-31 14:33         ` Ted Zlatanov
2006-05-31  7:52       ` Kim F. Storm
2006-05-31 14:26         ` Ted Zlatanov
2006-05-31 15:10           ` Kim F. Storm
2006-05-30 21:00     ` Kevin Rodgers
2006-05-31 14:19   ` Carsten Dominik
2006-05-31  8:00 ` Kim F. Storm

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).