Quote:
Originally Posted by alexsinev
I want to use your BB code for making boxes around the text sometimes.
|
Thats not the sense of a table - it exists to format/display tabular content, and not for "making boxes". I consider using <div> or <span> for that.
But if you want to use it this way...
Remove this code from the plugin xml (line 150ff.) and import it again:
Code:
# if we have only one row and one cell a table makes no sense - return input with no change
if($bbcode_table['table']['rows']+$bbcode_table['table']['cols']==2)
{
return $code;
}
Stefan