Пример #1
0
function process_tables(&$sample_html, $offset)
{
    return autoclose_tag($sample_html, $offset, "(table)", array("table" => "process_table"), "");
}
Пример #2
0
function process_selects(&$sample_html, $offset)
{
    return autoclose_tag($sample_html, $offset, "(select)", array("select" => "process_select"), "");
}
Пример #3
0
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'), '');
}
Пример #5
0
function process_deflists(&$sample_html, $offset)
{
    return autoclose_tag($sample_html, $offset, "(dl)", array("dl" => "process_dl"), "");
}