definition.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. underline:
  31. type: Boolean
  32. default: false
  33. title: Underline Emphasis
  34. hint: Enable text underlining by using _underline_ syntax.
  35. order: 4
  36. public: true
  37. typographer:
  38. type: Boolean
  39. default: false
  40. title: Typographer
  41. hint: Enable some language-neutral replacement + quotes beautification.
  42. order: 5
  43. public: true
  44. quotes:
  45. type: String
  46. default: English
  47. title: Quotes style
  48. hint: When typographer is enabled. Double + single quotes replacement pairs. e.g. «»„“ for Russian, „“‚‘ for German, etc.
  49. order: 6
  50. enum:
  51. - Chinese
  52. - English
  53. - French
  54. - German
  55. - Greek
  56. - Japanese
  57. - Hungarian
  58. - Polish
  59. - Portuguese
  60. - Russian
  61. - Spanish
  62. - Swedish
  63. public: true