HTMLPurifier で「クラス」を許可するにはどうすればよいですか? 私はこれを浄化しようとしています:
<div class="txt_r" id="test">Blah</div>
そして私は得る:
<div id="test">Blah</div>
クラスが消えるのはなぜですか?次の構成を使用しています:
$config->set('Attr.EnableID', true);
$config->set('CSS.Trusted', true);
$config->set('HTML.AllowedAttributes', 'style, src, class');