definition.yml 834 B

12345678910111213141516171819202122232425262728
  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. allowDrawIoUnsafe:
  18. type: Boolean
  19. title: Allow Draw.io Unsafe Elements
  20. default: true
  21. hint: Draw.io diagrams may introduce some elements that are usually filtered. Turning off this option may cause some diagrams to be completely removed during the sanitization process.
  22. order: 2
  23. allowIFrames:
  24. type: Boolean
  25. title: Allow iframes
  26. default: false
  27. hint: iframes will not be stripped if enabled. (Not recommended)
  28. order: 3