wondering if there is a way to format designated html paragraph text so that it falls inside cells of a table
where each return would signify a new <tr> table row and each colon) would signify a new <td> table cell as follows:
seat height:18"
seat depth: 17"
should convert to:
where each return would signify a new <tr> table row and each colon) would signify a new <td> table cell as follows:
seat height:18"
seat depth: 17"
should convert to:
Code:
<tr>
<td>seat height</td>
<td>18"</td>
</tr>
<tr>
<td>seat depth</td>
<td>17"</td>
</tr>