Gunn: The final score can't be rigged. I don't care how many players you grease, that last shot always comes up a question mark. But here's the thing. You never know when you're taking it. It could be when you're duking it out with the Legion of Doom, or just crossing the street deciding where to have brunch. So you just treat it like it was up to you—the world in balance—'cause you never know when it is.

'Underneath'


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.

To-do list


§ ita § - Nov 12, 2004 7:02:51 am PST #8745 of 10000
Well not canonically, no, but this is transformative fiction.

Block is kinda where mark is, I found. Not that there's anywhere else to put it, but it could happen.


Betsy HP - Nov 12, 2004 7:05:14 am PST #8746 of 10000
If I only had a brain...

I certainly could have hit "Block" by mistake, but I haven't Marked or Blocked anything (on purpose, anyway) in weeks.


Gandalfe - Nov 12, 2004 10:15:55 am PST #8747 of 10000
The generation that could change the world is still looking for its car keys.

Hey. Gandalfe just got rendered blinvisible when I never MARCIEd him.

I'm magic.


DCJensen - Nov 12, 2004 10:17:06 am PST #8748 of 10000
All is well that ends in pizza.

We should have known by the name...


amych - Nov 12, 2004 10:21:20 am PST #8749 of 10000
Now let us crush something soft and watch it fountain blood. That is a girlish thing to want to do, yes?

He wasn't blocked at all, he Fell Into Shadow.


Gandalfe - Nov 12, 2004 11:02:43 am PST #8750 of 10000
The generation that could change the world is still looking for its car keys.

Flee, you fools!


Topic!Cindy - Nov 12, 2004 11:48:06 am PST #8751 of 10000
What is even happening?

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.


§ ita § - Nov 12, 2004 2:06:51 pm PST #8752 of 10000
Well not canonically, no, but this is transformative fiction.

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.


§ ita § - Nov 12, 2004 2:25:39 pm PST #8753 of 10000
Well not canonically, no, but this is transformative fiction.

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>


Jon B. - Nov 12, 2004 2:31:21 pm PST #8754 of 10000
A turkey in every toilet -- only in America!

Whoa! That's very cool!