How to make a HTML table in comment section
aery
✭✭✭
When normal html table is written, it is not shown in comment section. How do I write html in comment body?
There was an error rendering this rich post.
0
Comments
First Header | Second Header
------------- | -------------
Content Cell | Content Cell
Content Cell | Content Cell
Replace:
function hl_bal($t, $do=1, $in='div'){with:function hl_bal($t, $do=1, $in='div'){vf.org is working with table tag properly, so maybe core devs are knowing better way.// <br /> tag breaks table, so we strip them.
$t = preg_replace(array('#(</?(?:td|tr)>)<br />#', '#<br />(\s*</td>)#'), '\\1', $t);
[Source] [Result]
Do not break the line inside table.
There was an error rendering this rich post.