recommendedXssWhiteList.js 585 B

123456789101112131415161718
  1. /**
  2. * reference: https://meta.stackexchange.com/questions/1777/what-html-tags-are-allowed-on-stack-exchange-sites
  3. * added tags: h4, h5, h6, span, div
  4. * added attributes: class, style
  5. */
  6. const tags = [
  7. 'a', 'b', 'blockquote', 'blockquote', 'code', 'del', 'dd', 'dl', 'dt', 'em',
  8. 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'i', 'img', 'kbd', 'li', 'ol', 'p', 'pre',
  9. 's', 'sup', 'sub', 'strong', 'strike', 'ul', 'br', 'hr', 'span', 'div',
  10. ];
  11. const attrs = ['src', 'width', 'height', 'alt', 'title', 'href', 'class', 'style'];
  12. module.exports = {
  13. 'tags': tags,
  14. 'attrs': attrs,
  15. };