Git Product home page Git Product logo

Comments (5)

buro9 avatar buro9 commented on August 15, 2024 2

And to the point @shurcooL made about HTML5, just for future reference it's true that we use a HTML5 library, but we're really only using it as a tokenizer.

As you clearly spotted we have our own internal logic as to which elements to permit without attributes. I sourced that list from HTML5 references, explicitly avoiding adding anything that W3C marked as deprecated or obsolete, hence the omission of big.

Thanks for enabling others to permit other tags. Sample code for those who stumble upon this issue:

    p := bluemonday.NewPolicy()
    p.AllowElements("font")

    // At this point "<font>hello</font>" would p.Sanitize() to "hello".

    p.AllowNoAttrs().OnElements("font")

    // At this point "<font>hello</font>" would p.Sanitize() to "<font>hello</font>".

from bluemonday.

dmitshur avatar dmitshur commented on August 15, 2024

You need to escape HTML symbols in your Markdown post. It is unreadable right now.

It is not said that bluemonday is only html5-sanitizer

This is worth clarifying first. bluemonday uses golang.org/x/net/html package which is an HTML5-compliant parser.

from bluemonday.

CMogilko avatar CMogilko commented on August 15, 2024

You need to escape HTML symbols in your Markdown post. It is unreadable right now.

Fixed.

This is worth clarifying first. bluemonday uses golang.org/x/net/html package which is an HTML5 parser.

Golang parser can parse most html4 documents, why not to allow users to customize policies with old tags? Internet is full of non-html5 documents, it will be good if bluemonday could be able to work with them.

from bluemonday.

CMogilko avatar CMogilko commented on August 15, 2024

Hello, what's about this issue?

from bluemonday.

buro9 avatar buro9 commented on August 15, 2024

Auto-closed by Github. But I wanted to say thanks for the code. I would've merged sooner but I was cycling up some mountains and had left my laptop at home. Github lacks an out-of-office status unfortunately.

from bluemonday.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.