This command converts comma or tab separated text to html table. For example:
OrderId,Product Count,Total
101,2,$15.95
102,1,$5.95
103,18,$17.05
Becomes:
<table class="orderDetails">
<tr><th>OrderId</th><th>Product Count</th><th>Total</th></tr>
<tr><td>101</td><td>2</td><td>$15.95</td></tr>
<tr><td>102</td><td>1</td><td>$5.95</td></tr>
<tr><td>103</td><td>18</td><td>$17.05</td></tr>
</table>
And here is how it would look like in any browser:
OrderId | Product Count | Total |
---|---|---|
101 | 2 | $15.95 |
102 | 1 | $5.95 |
103 | 18 | $17.05 |
Below are options used for above conversions. All options are self explanatory.