function process_tables(&$sample_html, $offset) { return autoclose_tag($sample_html, $offset, "(table)", array("table" => "process_table"), ""); }
function process_selects(&$sample_html, $offset) { return autoclose_tag($sample_html, $offset, "(select)", array("select" => "process_select"), ""); }
function process_lists(&$sample_html, $offset) { return autoclose_tag($sample_html, $offset, "(ul|ol)", array("ul" => "process_ul", "ol" => "process_ol"), ""); }
function process_tables(&$sample_html, $offset) { return autoclose_tag($sample_html, $offset, '(table)', array('table' => 'process_table'), ''); }
function process_deflists(&$sample_html, $offset) { return autoclose_tag($sample_html, $offset, "(dl)", array("dl" => "process_dl"), ""); }