I have an HTML table stored in a string. I want to write that string into a PDF document using iTextSharp library. Please suggest the approach. Below is the table I want to write in a PDF file
<table>
<tr>
<th>test</th><td> </td><td>ABCD</td><td> </td><td> </td><td> </td>
</tr><tr>
<th>test 2</th><td> </td><td>XYZ</td><td> </td><td> </td><td> </td>
</tr>
</table>