如何在 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');