You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

  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. allowHTML:
  10. type: Boolean
  11. default: true
  12. title: Allow HTML
  13. hint: Enable HTML tags in content
  14. linkify:
  15. type: Boolean
  16. default: true
  17. title: Automatically convert links
  18. hint: Links will automatically be converted to clickable links.
  19. linebreaks:
  20. type: Boolean
  21. default: true
  22. title: Automatically convert line breaks
  23. hint: Add linebreaks within paragraphs.
  24. typographer:
  25. type: Boolean
  26. default: false
  27. title: Typographer
  28. hint: Enable some language-neutral replacement + quotes beautification
  29. quotes:
  30. type: String
  31. default: English
  32. title: Quotes style
  33. hint: When typographer is enabled. Double + single quotes replacement pairs. e.g. «»„“ for Russian, „“‚‘ for German, etc.
  34. enum:
  35. - Chinese
  36. - English
  37. - French
  38. - German
  39. - Greek
  40. - Japanese
  41. - Hungarian
  42. - Polish
  43. - Portuguese
  44. - Russian
  45. - Spanish
  46. - Swedish