Quote:
Originally Posted by Turtle91
I built a group of CLIPS that got almost all of the table elements organized how I liked.
I would highlight and mark the text (ctrl-shift-m) and then run the group. I called the group "Compress Table" and it put each <tr> on its own line with all of the <td>s in the same line.
Looked something like this:
Code:
<table>
<thead>
<tr><th>....</th><th>....</th><th>....</th><th>....</th></tr>
</thead>
<tbody>
<tr><td>....</td><td>....</td><td>....</td><td>....</td></tr>
<tr><td>....</td><td>....</td><td>....</td><td>....</td></tr>
<tr><td>....</td><td>....</td><td>....</td><td>....</td></tr>
<tr><td>....</td><td>....</td><td>....</td><td>....</td></tr>
</tbody>
<tfoot>
<tr><td colspan="4">.....</td></tr>
</tfoot>
</table>
|
Yeah, this is exactly what I need !!!