From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Daniel J. Sinder" Subject: Feature request: HTML table formatting Date: Wed, 11 Apr 2007 16:17:26 -0700 Message-ID: <461D6C86.2060601@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hbm8H-0002gk-J4 for emacs-orgmode@gnu.org; Wed, 11 Apr 2007 19:21:45 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hbm8F-0002gW-7F for emacs-orgmode@gnu.org; Wed, 11 Apr 2007 19:21:45 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hbm8E-0002gT-Vo for emacs-orgmode@gnu.org; Wed, 11 Apr 2007 19:21:43 -0400 Received: from sd-green-bigip-74.dreamhost.com ([208.97.132.74] helo=randymail-a5.g.dreamhost.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Hbm48-0005Dg-FE for emacs-orgmode@gnu.org; Wed, 11 Apr 2007 19:17:28 -0400 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: emacs-orgmode Generally, I like the latest incarnation of HTML table formatting, in particular because I can control the presence of horizontal lines. But, now I'm spoiled and would like to do the same for vertical lines -- on a table-by-table basis. With the rules=groups attribute (already the default with org-mode), this can be accomplished in HTML using the COLGROUP element. What about a new column delimiter (e.g., '!') to indicate column groups in addition to columns? My hope is to have something like the following be possible: ! ! Col A | Col B | Col C ! !--------!---------|---------|--------! ! Row 1 ! A1 | B1 | C1 ! ! Row 2 ! A2 | B2 | C2 ! !--------!---------|---------|--------! The '!' lines would appear in the HTML rendering, while the "|" lines would not. Or, as an ASCII export: |-------+---------+---------+--------| | | Col A | Col B | Col C | |-------+---------+---------+--------| | Row 1 | A1 B1 C1 | | Row 2 | A2 B2 C2 | |-------+----------------------------| Dan