Files
luos/thirdparty/html2ps_pdf/xhtml.lists.inc.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

30 lines
982 B
PHP

<?php
// $Header: /cvsroot/html2ps/xhtml.lists.inc.php,v 1.3 2005/04/27 16:27:46 Konstantin Exp $
function process_li(&$sample_html, $offset) {
return autoclose_tag($sample_html, $offset, "(ul|ol|li|/li|/ul|/ol)",
array("ul" => "process_ul",
"ol" => "process_ol"),
"/li");
};
function process_ol(&$sample_html, $offset) {
return autoclose_tag($sample_html, $offset, "(li|/ol)",
array("li" => "process_li"),
"/ol");
};
function process_ul(&$sample_html, $offset) {
return autoclose_tag($sample_html, $offset, "(li|/ul)",
array("li" => "process_li"),
"/ul");
};
function process_lists(&$sample_html, $offset) {
return autoclose_tag($sample_html, $offset, "(ul|ol)",
array("ul" => "process_ul",
"ol" => "process_ol"),
"");
};
?>