tidy_get_output
Return a string representing the parsed tidy markup
Description
stringtidy_get_output
resourcetidy
tidy_get_output returns a string with the repaired
html.
tidy_get_output example
paragraph';
$tidy = tidy_parse_string($html);
$tidy->CleanRepair();
echo tidy_get_output($tidy);
?>
]]>
The above example will output:
paragraph
]]>