Currently I have several php files that are messy, I mean it's something like this:
<thead>
<tr style="background:#339999;color:white;">
<th>ID</th>
<th>APELLIDO PATERNO</th>
<th>APELLIDO MATERNO</th>
<th>NOMBRES</th>
<th>DNI</th>
<th>CARGO</th>
<th>RAZON SOCIAL</th>
<th></th>
</tr>
</thead>
and I would like to correct it as follows:
<thead>
<tr style="background:#339999;color:white;">
<th>ID</th>
<th>APELLIDO PATERNO</th>
<th>APELLIDO MATERNO</th>
<th>NOMBRES</th>
<th>DNI</th>
<th>CARGO</th>
<th>RAZON SOCIAL</th>
<th></th>
</tr>
</thead>
I could share some plugin or tool to order my code.