I have a StringBuilder which contains a HTML table. I want to know, if I can print this table in the console using some kind of library or anything. For example:
StringBuilder string = "<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
</table>"
I want to print this above string in a table format in console such that I do not need to specify any table information like column header or any other information.