THANK YOU!!!

I had to make a small modification to this line:

return (null !== $size)
           ? '' . $text . ''
           : $text; 

I did this:

  $size = $token->getAttribute('size');
       return (null !== $size)
           ? '' . $text . ''
           : $text;

My bbcode editor has 3 sizes, 50, 100, 200, so I have 3 span classes in my
.css file that match.

Cheers dude!!

monk.e.boy
-- 
View this message in context: 
http://n4.nabble.com/Zend-Markup-size-tag-tp1471192p1472383.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to