definition.yml 812 B

123456789101112131415161718192021222324252627
  1. title: Security
  2. description: Filter and strips potentially dangerous content
  3. author: requarks.io
  4. icon: mdi-fire
  5. enabledDefault: true
  6. dependsOn: core
  7. step: post
  8. order: 99999
  9. props:
  10. safeHTML:
  11. type: Boolean
  12. title: Sanitize HTML
  13. default: true
  14. hint: Sanitize HTML from unsafe attributes and tags that could lead to XSS attacks
  15. order: 1
  16. allowDrawIoUnsafe:
  17. type: Boolean
  18. title: Allow Draw.io Unsafe Elements
  19. default: true
  20. 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.
  21. order: 2
  22. allowIFrames:
  23. type: Boolean
  24. title: Allow iframes
  25. default: false
  26. hint: iframes will not be stripped if enabled. (Not recommended)
  27. order: 3