Can you add the Table BBCode to be used with Vb ?? This is the actual code for SMF...
Code:
<operation>
<search position="replace"><![CDATA[
'table' => array('code' => 'table', 'before' => '[table]', 'after' => '[/table]', 'description' => $txt[436]),
'tr' => array('code' => 'td', 'before' => '[tr]', 'after' => '[/tr]', 'description' => $txt[449]),
'td' => array('code' => 'td', 'before' => '[td]', 'after' => '[/td]', 'description' => $txt[437]),]]></search>
<add><![CDATA[
'tabletrtd' => array('code' => 'tabletrtd', 'before' => '[table]\n[tr]\n[td]', 'after' => '[/td]\n[/tr]\n[/table]', 'description' => $txt[436]),
'tr' => array('code' => 'td', 'before' => '[tr]\n[td]', 'after' => '[/td]\n[/tr]', 'description' => $txt[449]),
'td' => array('code' => 'td', 'before' => '[td]', 'after' => '[/td]', 'description' => $txt[437]),]]></add>
</operation>
</file>
<file name="$sourcedir/Subs.php">
<operation>
<search position="replace"><![CDATA[
'before' => '<table style="font: inherit; color: inherit;">',]]></search>
<add><![CDATA[
'before' => '<table style="font: inherit; color: inherit;" class="table_bbc">',]]></add>
</operation>
</file>
<file name="$themedir/style.css">
<operation>
<search position="end" />
<add><![CDATA[
/* Table Plus BBCodes */
.table_bbc { border-spacing: 2px; background: #88A6C0 url(images/catbg.jpg) repeat-x }
.table_bbc td { padding: 5px; background: #E9F0F6 url(images/titlebg.jpg) repeat-x 0 -17px }
]]></add>
</operation>
</file>
</modification>
Code:
<operation>
<search position="replace"><![CDATA[
'table' => array('code' => 'table', 'before' => '[table]\n[tr]\n[td]', 'after' => '[/td]\n[/tr]\n[/table]', 'description' => $txt['table']),]]></search>
<add><![CDATA[
'tabletrtd' => array('code' => 'tabletrtd', 'before' => '[table]\n[tr]\n[td]', 'after' => '[/td]\n[/tr]\n[/table]', 'description' => $txt['table']),
'tr' => array('code' => 'tr', 'before' => '[tr]\n[td]', 'after' => '[/td]\n[/tr]', 'description' => $txt['table_tr']),
'td' => array('code' => 'td', 'before' => '[td]', 'after' => '[/td]', 'description' => $txt['table_td']),]]></add>
</operation>
</file>
<file name="$themedir/style.css">
<operation>
<search position="end" />
<add><![CDATA[
/* Table Plus BBCodes */
.bbc_table { border-spacing: 2px; background: #88A6C0 url(images/catbg.jpg) repeat-x }
.bbc_table td { padding: 5px; background: #E9F0F6 url(images/titlebg.jpg) repeat-x 0 -17px }
]]></add>
</operation>
</file>
</modification>