Block is kinda where mark is, I found. Not that there's anywhere else to put it, but it could happen.
Joyce ,'Never Leave Me'
Buffistas Building a Better Board
Do you have problems, concerns or recommendations about the technical side of the Phoenix? Air them here. Compliments also welcome.
I certainly could have hit "Block" by mistake, but I haven't Marked or Blocked anything (on purpose, anyway) in weeks.
Hey. Gandalfe just got rendered blinvisible when I never MARCIEd him.
I'm magic.
We should have known by the name...
He wasn't blocked at all, he Fell Into Shadow.
Flee, you fools!
He was taken by both shadow and flame. A balrog of Morgoth. For we went needlessly into the net of Moria. But with the filter--balrog? Blinvisible.
Tidy is installed, Gus. Note, it is not the tidy documented here. Since we're at 4.3.8, I guess. It is the tidy not really documented here.
I can verify that
<?php
$html = '<b><i>test</p></table>';
$tidy = tidy_repair_string($html);
print_r($tidy);
?>
this:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
</head>
<body>
<b><i>test<br>
<br></i></b>
</body>
</html>
So we'd need to dial that down a wee bit.
Okay, I found the configuration -- and you can kinda use both docs, it seems.
$html = '<b><i>test</p></table>';
$config = array('show-body-only' => true);
$tidy = tidy_repair_string($html,$config);
gives
<b><i>test<br>
<br></i></b>
Whoa! That's very cool!