definition.yml 836 B

1234567891011121314151617181920212223242526272829
  1. key: htmlCore
  2. title: Core
  3. description: Basic HTML Parser
  4. author: requarks.io
  5. input: html
  6. output: html
  7. icon: mdi-language-html5
  8. props:
  9. absoluteLinks:
  10. type: Boolean
  11. default: false
  12. title: Treat relative links as root absolute
  13. hint: For example, a link to foo/bar on page xyz will render as /foo/bar instead of /xyz/foo/bar.
  14. order: 1
  15. openExternalLinkNewTab:
  16. type: Boolean
  17. default: false
  18. title: Open external links in a new tab
  19. hint: External links will have a _blank target attribute added automatically.
  20. order: 2
  21. relAttributeExternalLink:
  22. type: String
  23. default: noreferrer
  24. title: Protect against XSS when opening _blank target links
  25. hint: External links with _blank attribute will have an additional rel attribute.
  26. order: 3
  27. enum:
  28. - noreferrer
  29. - noopener