Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[sanitize_html] <font> tag hides text #101

Open
halkportal970 opened this issue Feb 25, 2021 · 1 comment
Open

[sanitize_html] <font> tag hides text #101

halkportal970 opened this issue Feb 25, 2021 · 1 comment
Labels
enhancement New feature or request pkg:sanitize_html Package sanitize_html

Comments

@halkportal970
Copy link

halkportal970 commented Feb 25, 2021

When I use this code, sanitizeHtml removes both font tags and all contents inside fonts.
printed string is <p dir="ltr"></p>

var detail = "<p dir=\"ltr\" style=\"margin: 0in 0in 0pt;\">" +
      "<font color=\"#000000\">" +
      "<font face=\"Calibri\">" +
      "<font size=\"3\">This is detail content.</font></font></font></p>" ;
     
print(sanitizeHtml(detail)); 
@halkportal970 halkportal970 added pending-triage Issue is pending triage pkg:sanitize_html Package sanitize_html labels Feb 25, 2021
@jonasfj jonasfj added enhancement New feature or request and removed pending-triage Issue is pending triage labels Mar 3, 2021
@jonasfj
Copy link
Member

jonasfj commented Mar 3, 2021

What is the expected behavior here?

Documentation says this follows rules applied for GFM sanitization.
This doesn't allow the <font> tag.

I think we could be open to extending sanitizeHtml with callbacks like:

  • bool allowTag(String tag), and,
  • bool allowAttribute(String tag, String attribute, String value).

I suppose one could also make the argument that we should not remove the contents of tags that are not allowed.
I think this is what the ruby library does too, see :remove_contents.

Maybe we should default to keep the contents of disallowed tags, while removing the tags, unless disallowed tag is one of: iframe math noembed noframes noscript plaintext script style svg xmp (for which contents should not be retained).

@jonasfj jonasfj changed the title font tag hides text [sanitize_html] <font> tag hides text Mar 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request pkg:sanitize_html Package sanitize_html
Projects
None yet
Development

No branches or pull requests

2 participants