>>> XML('<b>test</b>',sanitize=True,permitted_tags = ['b']).xml()
'<b>test</b>'
>>> XML('<a>test</a>',sanitize=True,permitted_tags = ['a']).xml()
'test'Why does the 'a' element get sanitized?
>>> XML('<b>test</b>',sanitize=True,permitted_tags = ['b']).xml()
'<b>test</b>'
>>> XML('<a>test</a>',sanitize=True,permitted_tags = ['a']).xml()
'test'Why does the 'a' element get sanitized?