View Single Post
Old 05-09-2025, 11:42 PM   #4
iMilazzo
Junior Member
iMilazzo began at the beginning.
 
Posts: 2
Karma: 10
Join Date: May 2025
Device: Apple iPad Pro
Quote:
Originally Posted by Turtle91 View Post
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 !!!
iMilazzo is offline   Reply With Quote