emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Re: visible row boundaries in html table export


From: goud-H
Subject: [Orgmode] Re: visible row boundaries in html table export
Date: Sun, 11 Feb 2007 14:24:55 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

goud-H <deniseborowy <at> 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.

<html>
<body>

<table border rules=groups>

<thead>
<tr>
<td>col 1</td>
<td>col 1</td>
<td>col 3</td>
</tr>
</thead>

<tbody>
<tr>
<td>a1</td>
<td>a1</td>
<td>a1</td>
</tr>
<tr>
<td>a2</td>
<td>a2</td>
<td>a2</td>
</tr>
</tbody>

<tbody>
<tr>
<td>b1</td>
<td>b1</td>
<td>b1</td>
</tr><tr>
<td>b2</td>
<td>b2</td>
<td>b2</td>
</tr>
</tbody>

</table>
</body>

</html>


a feasible way could be to insert extra colums with "|" as content.
however, not very nice...


<html>
<body>

<table border rules=groups>

<thead>
<tr>
<td>col 1</td>
<td>|</td>
<td>col 1</td>
<td>|</td>
<td>col 3</td>
</tr>
</thead>

<tbody>
<tr>
<td>a1</td>
<td>|</td>
<td>a1</td>
<td>|</td>
<td>a1</td>
</tr>
<tr>
<td>a2</td>
<td>|</td>
<td>a2</td>
<td>|</td>
<td>a2</td>
</tr>
</tbody>

<tbody>
<tr>
<td>b1</td>
<td>|</td>
<td>b1</td>
<td>|</td>
<td>b1</td>
</tr>
<tr>
<td>b2</td>
<td>|</td>
<td>b2</td>
<td>|</td>
<td>b2</td>
</tr>
</tbody>

</table>
</body>

</html>








reply via email to

[Prev in Thread] Current Thread [Next in Thread]