1plugin-table2csv
2================
3
4Create a csv file from the first table on a dokuwiki page
5
6Installation
7============
81. Install the branch version of the Tools plugin from https://github.com/TomCafferty/plugin-tools/zipball/master.
92. Install the table2csv plugin using the Plugin Manager and the download URL above.
10   If you install this plugin manually, make sure it is installed in lib/plugins/table2csv/
11
12Usage
13=====
14Add the following plugin code. This will provide an export selection.
15  ~~TOOLS:both~~
16Add the following plugin code. This will be used to identify the table because by specifying a start marker of any text on the page the plugin will select the first table following the start marker.  The startmarker cannot be part of the table such as a column heading or caption. Replace "any text" with your start marker. No quotes are used unless thay are in your start marker.
17<table2csv>&startMarker=any text&</table2csv>
18The file page should display the plugin Tools selection to Export To csv in the top and bottom right corners of the page.
19Select this to export the first table into a csv file.
20The filename and path can be specified in the /conf/default.php file.
21It currently defaults to table.csv in the dokuwiki base install folder.
22
23License
24=======
25Copyright (C) Tom Cafferty <tcafferty@glocalfocal.com>
26
27This program is free software; you can redistribute it and/or modify
28it under the terms of the GNU General Public License as published by
29the Free Software Foundation; version 2 of the License
30
31This program is distributed in the hope that it will be useful,
32but WITHOUT ANY WARRANTY; without even the implied warranty of
33MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34GNU General Public License for more details.
35
36
37