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.

37 lines
809 B

  1. key: markdownPlantuml
  2. title: PlantUML
  3. description: PlantUML Markdown Parser
  4. author: ethanmdavidson
  5. icon: mdi-sitemap
  6. enabledDefault: true
  7. dependsOn: markdownCore
  8. props:
  9. server:
  10. type: String
  11. default: http://www.plantuml.com/plantuml
  12. title: PlantUML Server
  13. hint: PlantUML server used for image generation
  14. order: 1
  15. openMarker:
  16. type: String
  17. default: "@startuml"
  18. title: Open Marker
  19. hint: String to use as opening delimiter
  20. order: 2
  21. closeMarker:
  22. type: String
  23. default: "@enduml"
  24. title: Close Marker
  25. hint: String to use as closing delimiter
  26. order: 3
  27. imageFormat:
  28. type: String
  29. default: svg
  30. title: Image Format
  31. hint: Format to use for rendered PlantUML images
  32. enum:
  33. - svg
  34. - png
  35. - latex
  36. - ascii
  37. order: 4