definition.yml 803 B

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