I have a form application in c# that reads HTML Invoice from web I want it to be textual output to print with POS printers.
<table border="1">
<tr>
<td>Hello</td>
<td>World</td>
</tr>
<tr>
<td>foo</td>
<td>bar</td>
</tr>
</table>
I am looking for something that can take the above table and create something like the following.
------------------------------
| Hello | World |
------------------------------
| foo | bar |
------------------------------