definition.yml 535 B

12345678910111213141516171819202122
  1. key: htmlSecurity
  2. title: Security
  3. description: Filter and strips potentially dangerous content
  4. author: requarks.io
  5. icon: mdi-fire
  6. enabledDefault: true
  7. dependsOn: htmlCore
  8. step: post
  9. order: 99999
  10. props:
  11. safeHTML:
  12. type: Boolean
  13. title: Sanitize HTML
  14. default: true
  15. hint: Sanitize HTML from unsafe attributes and tags that could lead to XSS attacks
  16. order: 1
  17. allowIFrames:
  18. type: Boolean
  19. title: Allow iframes
  20. default: false
  21. hint: iframes will not be stripped if enabled. (Not recommended)
  22. order: 2