html paragraph to table
reformat html paragraph to table
Start file
<div>
<p>task 1</p>
<p>description here ....</p>
<p>task 2</p>
<p>some other description here ....</p>
</div>
End file
<table>
<tr>
<td>task 1</td>
<td>description here ....</td>
</tr>
<tr>
<td>task 2</td>
<td>some other description here ....</td>
</tr>
</table>
View Diff
1,6c1,10
< <div>
< <p>task 1</p>
< <p>description here ....</p>
< <p>task 2</p>
< <p>some other description here ....</p>
< </div>
---
> <table>
> <tr>
> <td>task 1</td>
> <td>description here ....</td>
> </tr>
> <tr>
> <td>task 2</td>
> <td>some other description here ....</td>
> </tr>
> </table>
Solutions by @foobar01123:
Unlock 13 remaining solutions by signing in and submitting your own entry