Home
last modified time | relevance | path

Searched refs:tablesource (Results 1 – 1 of 1) sorted by relevance

/plugin/mediasyntax/tools/
H A Ddokuwiki2mediawiki.php184 $tablesource="{| class=\"wikitable sortable\" border=1\n"; variable
187 $tablesource.="!";
190 $tablesource.=$headers[$n];
191 if ($n<count($headers)-1) $tablesource.="!!";
193 $tablesource.="\n|-\n";
197 $tablesource.="| ";
202 if ($rowspancells[$y][$x]>1) $tablesource.="rowspan=".$rowspancells[$y][$x]."|";
203 $tablesource.=$cells[$y][$x];
204 if ($x<count($cells[$y])-1) $tablesource.=" || ";
207 $tablesource
[all...]