I'm working on dynamic template for bootstrap, and i'm using HTML Tidy. However it seem HTML Tidy remove specific tags, for example:
<b class="caret"></b>
How to supposed solve this ? my options/config is
$options = array('indent' => true, 'wrap' => '300', "indent-spaces" => 4, 'clean'=>false );
Thanks..