Home
last modified time | relevance | path

Searched refs:colspan (Results 1 – 4 of 4) sorted by path

/dokuwiki/data/pages/wiki/
H A Dsyntax.txt308 | Row 2 Col 1 | some colspan (note the double pipe) ||
315 | Row 2 Col 1 | some colspan (note the double pipe) ||
324 ^ Heading 4 | no colspan this time | |
331 ^ Heading 4 | no colspan this time | |
/dokuwiki/inc/
H A DDifferenceEngine.php1121 var $colspan = 2; variable in TableDiffFormatter
1150 $r = '<tr><td '.HTMLDiff::css('diff-blockheader').' colspan="'.$this->colspan.'">'.$l1.":</td>\n".
1151 '<td '.HTMLDiff::css('diff-blockheader').' colspan="'.$this->colspan.'">'.$l2.":</td>\n".
1183 return '<td colspan="'.$this->colspan.'">&#160;</td>';
1235 var $colspan = 2; variable in InlineDiffFormatter
1266 $r = '<tr><td colspan="'.$this->colspan
[all...]
/dokuwiki/inc/parser/
H A Drenderer.php826 * @param int $colspan
830 public function tableheader_open($colspan = 1, $align = null, $rowspan = 1)
844 * @param int $colspan
848 public function tablecell_open($colspan = 1, $align = null, $rowspan = 1)
725 tableheader_open($colspan = 1, $align = null, $rowspan = 1) global() argument
741 tablecell_open($colspan = 1, $align = null, $rowspan = 1) global() argument
H A Dxhtml.php1531 * @param int $colspan
1536 public function tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = null)
1548 if ($colspan > 1) {
1549 $this->_counter['cell_counter'] += $colspan - 1;
1550 $this->doc .= ' colspan="' . $colspan . '"';
1569 * @param int $colspan
1574 public function tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = null)
1586 if ($colspan > 1) {
1587 $this->_counter['cell_counter'] += $colspan
1440 tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = null) global() argument
1476 tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = null) global() argument
[all...]