Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Adjust sanitization code to allow HTML5 'data-' attributes through. #19
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nathan-osman commentedMay 25, 2012
Basically I have made two minor modifications to files in the
planet/vendorfolder.Both
planet/vendor/feedparser.pyandplanet/vendor/html5lib/sanitizer.py(which are used for sanitizing the HTML / XHTML encountered in a feed) strip out HTML5 data attributes. These attributes have no meaning to the browser (they are ignored) but third party scripts that are added to the planet page may make use of these attributes and having them stripped out breaks the scripts (or causes them to fail).Therefore, I have modified the two above files to allow these attributes to pass through the filtering / sanitization unaltered.
Please let me know if you have any questions / concerns.