definition.yml 714 B

12345678910111213141516171819202122232425262728293031
  1. key: markdownCore
  2. title: Core
  3. description: Basic Markdown Parser
  4. author: requarks.io
  5. input: markdown
  6. output: html
  7. icon: crop_free
  8. props:
  9. linkify:
  10. type: Boolean
  11. default: true
  12. title: Automatically convert links
  13. hint: Links will automatically be converted to clickable links.
  14. linebreaks:
  15. type: Boolean
  16. default: true
  17. title: Automatically convert line breaks
  18. hint: Add linebreaks within paragraphs.
  19. highlightCode:
  20. type: Boolean
  21. default: true
  22. title: Highlight code blocks
  23. hint: Add syntax coloring to code blocks.
  24. codeTheme:
  25. type: String
  26. default: light
  27. title: Code Color Theme
  28. hint: Color theme for code blocks
  29. enum:
  30. - light
  31. - dark