ezyang / htmlpurifier

Standards compliant HTML filter written in PHP
http://htmlpurifier.org
GNU Lesser General Public License v2.1
3.07k stars 327 forks source link

Add css support for text-decoration-line #251

Closed lukeluluke closed 1 year ago

Rah1x commented 1 year ago

@ezyang Do you mean the following?

$this->info['text-decoration-line'] = new HTMLPurifier_AttrDef_Enum(
    ['none', 'underline', 'overline', 'line-through']
);

Let me know if you are happy with this, I will create a new PR and also add a test.

ezyang commented 1 year ago

Yup plz do

Rah1x commented 1 year ago

Done. have a look: https://github.com/ezyang/htmlpurifier/pull/360

Rah1x commented 1 year ago

since this is now completed via https://github.com/ezyang/htmlpurifier/pull/360, we can delete this PR.