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>






_______________________________________________
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to