From mboxrd@z Thu Jan 1 00:00:00 1970 From: Baoqiu Cui Subject: Re: Re: Aligning Columns in HTML Export Tables Date: Sun, 24 Oct 2010 21:36:36 -0700 Message-ID: References: <878w1svl7y.fsf@gollum.intra.norang.ca> <53D6BE6F-C152-45DE-B01B-89D50B4848BC@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=51843 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PAEnb-0002WA-4z for emacs-orgmode@gnu.org; Mon, 25 Oct 2010 00:36:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PAEnZ-0000A3-9j for emacs-orgmode@gnu.org; Mon, 25 Oct 2010 00:36:43 -0400 Received: from smtp108.prem.mail.sp1.yahoo.com ([98.136.44.63]:39875) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1PAEnZ-00009q-0t for emacs-orgmode@gnu.org; Mon, 25 Oct 2010 00:36:41 -0400 In-Reply-To: <53D6BE6F-C152-45DE-B01B-89D50B4848BC@gmail.com> (Carsten Dominik's message of "Fri, 22 Oct 2010 09:32:30 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: Bernt Hansen , Jeff Horn , Org-mode ml , Dan Davison Carsten Dominik writes: > Baoqiu, > > (or any other users of the docbook exporter) > I am not sure if the docbook format has suffered from this change, > could you please run a few tests involving tables and report back? Thanks for supporting this new feature. DocBook exporter does not really suffer from this change, but it does not benefit from it either. After checking the documentation of DocBook and HTML table, it seems that using the "class" attribute in elements for alignment is not the best solution. Attribute "align" is officially supported by DocBook and HTML based on the following two links: 1. http://docbook.org/tdg5/en/html/html.td.html 2. http://www.w3.org/TR/html401/struct/tables.html#h-11.3.2 If I change "class" to "align" in the following lines, the same table can be recognized by both Firefox and DocBook. I am wondering if there is any special reason to use "class" instead of "align". If not, can we change the elisp code to use "align"? ABC 123 1213300 9114 Thanks! -- Baoqiu