definition.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. public: true
  16. linkify:
  17. type: Boolean
  18. default: true
  19. title: Automatically convert links
  20. hint: Links will automatically be converted to clickable links.
  21. order: 2
  22. public: true
  23. linebreaks:
  24. type: Boolean
  25. default: true
  26. title: Automatically convert line breaks
  27. hint: Add linebreaks within paragraphs.
  28. order: 3
  29. public: true
  30. typographer:
  31. type: Boolean
  32. default: false
  33. title: Typographer
  34. hint: Enable some language-neutral replacement + quotes beautification
  35. order: 4
  36. public: true
  37. quotes:
  38. type: String
  39. default: English
  40. title: Quotes style
  41. hint: When typographer is enabled. Double + single quotes replacement pairs. e.g. «»„“ for Russian, „“‚‘ for German, etc.
  42. order: 5
  43. enum:
  44. - Chinese
  45. - English
  46. - French
  47. - German
  48. - Greek
  49. - Japanese
  50. - Hungarian
  51. - Polish
  52. - Portuguese
  53. - Russian
  54. - Spanish
  55. - Swedish
  56. public: true