Beispiel #1
0
 /**
  * Visit a table cell.
  *
  * In a preview, table *rows* are considered atomic, so if we are displaying this
  * row we need to simply render all the cells. If we are not displaying this row
  * we need to skip all the table cells.
  *
  * @param T_Text_TableCell $node
  */
 function visitTextTableCell(T_Text_TableCell $node)
 {
     if ($this->table_row) {
         parent::visitTextTableCell($node);
     }
 }