tag_whitelist.py 363B

1234567891011121314151617
  1. TAG_WHITELIST = [
  2. 'b', 'blockquote', 'br',
  3. 'caption', 'cite', 'code',
  4. 'dd', 'del', 'dfn', 'dl', 'dt',
  5. 'em',
  6. 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr',
  7. 'i', 'img', 'ins',
  8. 'li',
  9. 'mark',
  10. 'ol',
  11. 'p', 'pre',
  12. 'q',
  13. 'samp', 'small', 'strong', 'sub', 'sup',
  14. 'table', 'tbody', 'td', 'tfoot', 'thead', 'tr',
  15. 'u', 'ul'
  16. ]