From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Otterson Subject: visible row boundaries in html table export Date: Sat, 10 Feb 2007 09:32:17 -0800 Message-ID: <45CE01A1.3040805@u.washington.edu> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1877464602==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HFwSe-0000Cc-4g for emacs-orgmode@gnu.org; Sat, 10 Feb 2007 12:56:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HFwSb-0000Bj-Vz for emacs-orgmode@gnu.org; Sat, 10 Feb 2007 12:56:31 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HFwSb-0000Bg-TD for emacs-orgmode@gnu.org; Sat, 10 Feb 2007 12:56:29 -0500 Received: from out5.smtp.messagingengine.com ([66.111.4.29]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HFwSb-0002BV-Gz for emacs-orgmode@gnu.org; Sat, 10 Feb 2007 12:56:29 -0500 Received: from out1.internal (unknown [10.202.2.149]) by out1.messagingengine.com (Postfix) with ESMTP id 4A8511AA3C8 for ; Sat, 10 Feb 2007 12:32:21 -0500 (EST) Received: from [192.168.1.101] (unknown [209.91.60.150]) by mail.messagingengine.com (Postfix) with ESMTP id CFF63153CD for ; Sat, 10 Feb 2007 12:32:20 -0500 (EST) 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@gnu.org This is a multi-part message in MIME format. --===============1877464602== Content-Type: multipart/alternative; boundary="------------090604080704080008030802" This is a multi-part message in MIME format. --------------090604080704080008030802 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Here's a question, or maybe a feature request... Is there a way to make table row boundaries show up in html exports? For example, when I html-export a table like this: | col 1 | col 2 | col 3 | |-------+-------+-------| | a | a | a | | a | a | a | |-------+-------+-------| | b | b | b | | b | b | b | I get a table like this: col 1 col 2 col 3 a a a a a a b b b b b b In the html export, the boundaries between groups of rows has disappeared. Is there a way to make the html export look more like what's displayed within org mode? Ideally, there would be some kind of distinct line below the column header row, and also between the 'a' and 'b' row groups. Thanks, Scott --------------090604080704080008030802 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Here's a question, or maybe a feature request...  Is there a way to make table row boundaries show up in html exports?  For example, when I html-export a table like this:


   | col 1 | col 2 | col 3 |
   |-------+-------+-------|
   | a     | a     | a     |
   | a     | a     | a     |
   |-------+-------+-------|
   | b     | b     | b     |
   | b     | b     | b     |
 

I get a table like this:

col 1 col 2 col 3
a a a
a a a
b b b
b b b

In the html export, the boundaries between groups of rows has disappeared.  Is there a way to make the html export look more like what's displayed within org mode?  Ideally, there would be some kind of distinct line below the column header row, and also between the 'a' and 'b' row groups.

Thanks,

Scott




--------------090604080704080008030802-- --===============1877464602== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============1877464602==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: visible row boundaries in html table export Date: Sun, 11 Feb 2007 07:13:38 +0100 Message-ID: References: <45CE01A1.3040805@u.washington.edu> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HG7y1-0003cx-AS for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 01:13:41 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HG7y0-0003ce-MF for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 01:13:41 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HG7y0-0003cW-Dh for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 01:13:40 -0500 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HG7y0-00053s-3P for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 01:13:40 -0500 In-Reply-To: <45CE01A1.3040805@u.washington.edu> 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: Scott Otterson Cc: emacs-orgmode@gnu.org What would the HTML code look like? - Carsten On Feb 10, 2007, at 18:32, Scott Otterson wrote: > Here's a question, or maybe a feature request...=A0 Is there a way to=20= > make table row boundaries show up in html exports?=A0 For example, = when=20 > I html-export a table like this: > > > =A0=A0 | col 1 | col 2 | col 3 | > =A0=A0 |-------+-------+-------| > =A0=A0 | a=A0=A0=A0=A0 | a=A0=A0=A0=A0 | a=A0=A0=A0=A0 | > =A0=A0 | a=A0=A0=A0=A0 | a=A0=A0=A0=A0 | a=A0=A0=A0=A0 | > =A0=A0 |-------+-------+-------| > =A0=A0 | b=A0=A0=A0=A0 | b=A0=A0=A0=A0 | b=A0=A0=A0=A0 | > =A0=A0 | b=A0=A0=A0=A0 | b=A0=A0=A0=A0 | b=A0=A0=A0=A0 | > =A0 > > I get a table like this: > >> col 1 >> col 2 >> col 3 >> a >> a >> a >> a >> a >> a >> b >> b >> b >> b >> b >> b > > In the html export, the boundaries between groups of rows has=20 > disappeared.=A0 Is there a way to make the html export look more like=20= > what's displayed within org mode?=A0 Ideally, there would be some kind=20= > of distinct line below the column header row, and also between the 'a'=20= > and 'b' row groups. > > Thanks, > > Scott > > > > > _______________________________________________ > Emacs-orgmode mailing list > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > -- Carsten Dominik Sterrenkundig Instituut "Anton Pannekoek" Universiteit van Amsterdam Kruislaan 403 NL-1098SJ Amsterdam phone: +31 20 525 7477 From mboxrd@z Thu Jan 1 00:00:00 1970 From: goud-H Subject: Re: visible row boundaries in html table export Date: Sun, 11 Feb 2007 08:06:46 +0000 (UTC) Message-ID: References: <45CE01A1.3040805@u.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HG9mk-00064V-QJ for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 03:10:10 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HG9mi-00061V-Tn for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 03:10:10 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HG9mi-00061K-Nf for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 03:10:08 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1HG9mi-0002QV-Al for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 03:10:08 -0500 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1HG9mc-0001S7-Gl for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 09:10:02 +0100 Received: from cache-frr-ab05.proxy.aol.com ([195.93.60.37]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 11 Feb 2007 09:10:02 +0100 Received: from deniseborowy by cache-frr-ab05.proxy.aol.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 11 Feb 2007 09:10:02 +0100 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@gnu.org > What would the HTML code look like? > > - Carsten >
col 1 col 2 col 3
a
a
a
a
a
a
b
b
b
b
b
b
From mboxrd@z Thu Jan 1 00:00:00 1970 From: goud-H Subject: Re: visible row boundaries in html table export Date: Sun, 11 Feb 2007 14:24:55 +0000 (UTC) Message-ID: References: <45CE01A1.3040805@u.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HGFdr-0006vy-SJ for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 09:25:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HGFdq-0006vm-Ae for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 09:25:23 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HGFdq-0006vj-7B for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 09:25:22 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1HGFdp-0004yX-3m for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 09:25:21 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1HGFdW-00010x-QG for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 15:25:08 +0100 Received: from cache-frr-ab09.proxy.aol.com ([195.93.60.41]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 11 Feb 2007 15:25:02 +0100 Received: from deniseborowy by cache-frr-ab09.proxy.aol.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 11 Feb 2007 15:25:02 +0100 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@gnu.org goud-H aol.com> writes: > > What would the HTML code look like? > > > > - Carsten merging the content of 2 rows can only be avoided by defining table border rules, unfortunately this gives lines below groups of 2 rows, but no lines in between the colums.
col 1 col 1 col 3
a1 a1 a1
a2 a2 a2
b1 b1 b1
b2 b2 b2
a feasible way could be to insert extra colums with "|" as content. however, not very nice...
col 1 | col 1 | col 3
a1 | a1 | a1
a2 | a2 | a2
b1 | b1 | b1
b2 | b2 | b2
From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Otterson Subject: Re: visible row boundaries in html table export Date: Sun, 11 Feb 2007 09:46:47 -0800 Message-ID: <45CF5687.9020401@u.washington.edu> References: <200702111425.l1BEPcc1013412@bp34.u.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HGImt-0000rE-F6 for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 12:46:55 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HGImr-0000qk-TS for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 12:46:55 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HGImr-0000qh-Ps for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 12:46:53 -0500 Received: from out5.smtp.messagingengine.com ([66.111.4.29]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HGImr-0005wP-HA for emacs-orgmode@gnu.org; Sun, 11 Feb 2007 12:46:53 -0500 In-Reply-To: <200702111425.l1BEPcc1013412@bp34.u.washington.edu> 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@gnu.org Cc: goud-H Yes, that'll work. Thanks! Scott From: goud-H > > What would the HTML code look like? > > > > - Carsten > > > > > > > > > > > > > > > > > > > > > > > > > > > >
col 1col 2col 3
a
a
a
a
a
a
b
b
b
b
b
b
> > >