From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Re: html export: row/column dividers in tables Date: Mon, 30 Mar 2009 23:44:19 -0500 Message-ID: <87ab72xpwc.fsf@fastmail.fm> References: <87wsa6wlmv.fsf@wolfram.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LoVpr-0002mP-Up for emacs-orgmode@gnu.org; Tue, 31 Mar 2009 00:44:27 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LoVpm-0002gz-Mc for emacs-orgmode@gnu.org; Tue, 31 Mar 2009 00:44:26 -0400 Received: from [199.232.76.173] (port=54042 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LoVpm-0002gv-Fc for emacs-orgmode@gnu.org; Tue, 31 Mar 2009 00:44:22 -0400 Received: from out3.smtp.messagingengine.com ([66.111.4.27]:52876) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LoVpm-00007g-3q for emacs-orgmode@gnu.org; Tue, 31 Mar 2009 00:44:22 -0400 In-Reply-To: <87wsa6wlmv.fsf@wolfram.com> (Bill White's message of "Mon, 30 Mar 2009 20:01:44 -0500") 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: Bill White Cc: emacs-orgmode@gnu.org Hi Bill, If I understand your post correctly, I think this section of the manual will help to accomplish what you are looking for---i.e., the creation of special vertical lines in tables: http://orgmode.org/manual/Column-groups.html#Column-groups Also you change the appearance of tables using css. Best, Matt Bill White writes: > I recently found a need for visible dividers (or "rules") between the > rows and columns of an org table exported to html. The most recent > discussion of this that I could find on gmane was > http://article.gmane.org/gmane.emacs.orgmode/1709/match=table+rules+html > from 2007, which concluded that such rules weren't supported, so here's > a kludgey workaround I found today: > > #+BEGIN_HTML >
> |----+----+----+----|
> | a0 | b0 | c0 | d0 |
> |----+----+----+----|
> | a1 | b1 | c1 | d1 |
> |----+----+----+----|
> | a2 | b2 | c2 | d2 |
> |----+----+----+----|
> 
> #+END_HTML > > It isn't pretty, but it works when you really need visual separation of > rows and columns. Here's what it looks like in real life: > > http://members.wolfram.com/billw/VerbatimTables.html > > BTW, here's how I got the org-mode code sample onto the webpage: > > #+begin_src org > #+BEGIN_HTML >
> |----+----+----+----|
> | a0 | b0 | c0 | d0 |
> |----+----+----+----|
> | a1 | b1 | c1 | d1 |
> |----+----+----+----|
> | a2 | b2 | c2 | d2 |
> |----+----+----+----|
> 
> #+END_HTML > #+end_src > > Cheers - > > bw