definition.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. key: markdownCore
  2. title: Core
  3. description: Basic Markdown Parser
  4. author: requarks.io
  5. input: markdown
  6. output: html
  7. icon: mdi-language-markdown
  8. props:
  9. allowHTML:
  10. type: Boolean
  11. default: true
  12. title: Allow HTML
  13. hint: Enable HTML tags in content
  14. order: 1
  15. linkify:
  16. type: Boolean
  17. default: true
  18. title: Automatically convert links
  19. hint: Links will automatically be converted to clickable links.
  20. order: 2
  21. linebreaks:
  22. type: Boolean
  23. default: true
  24. title: Automatically convert line breaks
  25. hint: Add linebreaks within paragraphs.
  26. order: 3
  27. typographer:
  28. type: Boolean
  29. default: false
  30. title: Typographer
  31. hint: Enable some language-neutral replacement + quotes beautification
  32. order: 4
  33. quotes:
  34. type: String
  35. default: English
  36. title: Quotes style
  37. hint: When typographer is enabled. Double + single quotes replacement pairs. e.g. «»„“ for Russian, „“‚‘ for German, etc.
  38. order: 5
  39. enum:
  40. - Chinese
  41. - English
  42. - French
  43. - German
  44. - Greek
  45. - Japanese
  46. - Hungarian
  47. - Polish
  48. - Portuguese
  49. - Russian
  50. - Spanish
  51. - Swedish