all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tak Ota <Takaaki.Ota@am.sony.com>
Cc: carsten.dominik@gmail.com
Subject: table.el downcase HTML tags
Date: Tue, 30 May 2006 10:13:35 -0700 (PDT)	[thread overview]
Message-ID: <20060530.101335.127866384.Takaaki.Ota@am.sony.com> (raw)

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

             reply	other threads:[~2006-05-30 17:13 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-05-30 17:13 Tak Ota [this message]
2006-05-30 19:23 ` table.el downcase HTML tags 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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20060530.101335.127866384.Takaaki.Ota@am.sony.com \
    --to=takaaki.ota@am.sony.com \
    --cc=carsten.dominik@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.