How about we pop them on a stack, and pop them back off again?
That makes sense. Though doing it by brute calculation would probably do just as well, what with the not-knowing-what-people-intended thing.
like:
if($number_of_a_tags > $number_of_close_a_tags){
print '</a>'}
kind of thing.
In netscape they stayed pink until the new page.
And yes, I think a brute count will work fine. (Needed on post only).
If there are is one fewer end pre than pre, you add an end pre to end of the post -ditto with bolds, italics table and so forth. Don't worry if it screws up the person's post. They can edit it if they wish. So long as it does not screw up the next persons post. So that really is a single additional pass once tag stripping is done.
We are not corecting all possible problems - just some simple ones where other peoples post can be hurt.
/me realises that it should be:
for($number_of_a_tags - $number_of_close_a_tags){
print '</a>'
}
above. But you get the idea.
The brute count doesn't respect the order, and you will risk putting out invalid html if they let two tags slip.
A stack, OTOH, will address some of that.
you will risk putting out invalid html if they let two tags slip.
Well yeah, but we've already got invalid HTML or we wouldn't be doing it.
A stack, OTOH, will address some of that.
So how do you envisage it working?
I'm just not seeing it in my mind.
Every tag gets pushed onto the end of an array, and then popped off it by the appearance of a closing tag?
Like, we encounter a FONT tag, the array becomes
FONT
then we encounter a bold tag, and the array is now
FONT,B
but then we encounter the close-B tag and dump the B, and we're back to:
FONT
and then when we get to the end of the post, if there's anything left in the array, that's what needs closing?
What happens if someone accidentally posts this then:
<FONT> blah blah blah <B> blah blah </FONT> blah blah </B>
because they match, but not in the right order.
I got some debugging to do, true, but if WX can output them in order, so can we. I'm just not going to have energy to logic it before tomorrow.
if WX can output them in order, so can we
That's the spirit!
What if we recorded the tags according to their position in the string?
blah blah blah <FONT>
would be stored in a hash with a key of 16 (because it starts at char 16) and a value of FONT.
Then all we need to do is see if there's a close-font with a greater number as its key.
Or! Or! Or!
We pop on opening tags. We delete (push or whatever) them when we encounter a closing tag. Then we close what's left in reverse order.
But I have to look up array searching.
We pop on opening tags. We delete (push or whatever) them when we encounter a closing tag.
How does that work for crossed-over tags, that's my question, like before.