in reply to
Re: Column wise entry in text table
in thread Column wise entry in text table
A w3m example:
cat <<EOT | w3m -T text/html -dump
> <html>
> <table border=1>
> <tr>
> <th>Numeric</th>
> <th>Value</th>
> </tr>
> <tr>
> <td>1</td>
> <td>one</td>
> </tr>
> <tr>
> <td>2</td>
> <td>two</td>
> </tr>
> <tr>
> <td>3</td>
> <td>three</td>
> </tr>
> </table>
> </html>
> EOT
┌────────┬─────┐
│Numeric │Value│
├────────┼─────┤
│1 │one │
├────────┼─────┤
│2 │two │
├────────┼─────┤
│3 │three│
└────────┴─────┘