Looking for a way to transform this code snippet:
<tr>
<td width="100%" bgcolor="#96002D" height="3" style="font-size: 1px; line-height: 1px;"> </td>
</tr>
From just a single line into a series of "/" characters like so:
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Any suggestions on how to achieve this transformation?
I've attempted the following:
<tr>
<td align="center">////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////</td>
</tr>
However, I believe there may be a more efficient method.