the From comma separated values option generates html tables using data exported from other programs
that conforms to a comma separated value format. To use it the data must be selected previously by
mouse dragging, then the option selected; a dialog window will allow the selection of several options.
When you press OK the data are commented out, and the HTML code for the table with the data inserted.
If a caption for the table is wanted, it must be the first line of the selection.
An example will help to clarify the use:
Before calling the table option:
table caption
*,First Col,Second Col,Third Col
Row1, 23, 34, 45
Row2, 12, 23, 34
After invoking the From comma Separated Values option, the code will be
table caption
| First Col
| Second Col
| Third Col
|
Row1
| 23
| 34
| 45
|
Row2
| 12
| 23
| 34
|
and when rendered the table will look like this:
table caption
| First Col
| Second Col
| Third Col
|
Row1
| 23
| 34
| 45
|
Row2
| 12
| 23
| 34
|