25 lines
854 B
PHP
25 lines
854 B
PHP
|
|
<?php
|
||
|
|
// $Header: /cvsroot/html2ps/xhtml.deflist.inc.php,v 1.3 2005/04/27 16:27:46 Konstantin Exp $
|
||
|
|
|
||
|
|
function process_dd(&$sample_html, $offset) {
|
||
|
|
return autoclose_tag($sample_html, $offset, "(dt|dd|dl|/dl|/dd)", array("dl" => "process_dl"), "/dd");
|
||
|
|
}
|
||
|
|
|
||
|
|
function process_dt(&$sample_html, $offset) {
|
||
|
|
return autoclose_tag($sample_html, $offset, "(dt|dd|dl|/dl|/dd)", array("dl" => "process_dl"), "/dt");
|
||
|
|
}
|
||
|
|
|
||
|
|
function process_dl(&$sample_html, $offset) {
|
||
|
|
return autoclose_tag($sample_html, $offset, "(dt|dd|/dl)",
|
||
|
|
array("dt" => "process_dt",
|
||
|
|
"dd" => "process_dd"),
|
||
|
|
"/dl");
|
||
|
|
};
|
||
|
|
|
||
|
|
function process_deflists(&$sample_html, $offset) {
|
||
|
|
return autoclose_tag($sample_html, $offset, "(dl)",
|
||
|
|
array("dl" => "process_dl"),
|
||
|
|
"");
|
||
|
|
};
|
||
|
|
|
||
|
|
?>
|