wikijs-fork/server/modules/rendering/markdown-plantuml/definition.yml

42 lines
871 B
YAML
Raw Normal View History

key: markdownPlantuml
title: PlantUML
description: PlantUML Markdown Parser
author: ethanmdavidson
icon: mdi-sitemap
enabledDefault: true
dependsOn: markdownCore
props:
server:
type: String
2020-05-09 02:51:32 +00:00
default: https://plantuml.requarks.io
title: PlantUML Server
hint: PlantUML server used for image generation
order: 1
2020-05-09 02:51:32 +00:00
public: true
openMarker:
type: String
2020-03-30 01:14:44 +00:00
default: "```plantuml"
title: Open Marker
hint: String to use as opening delimiter
order: 2
2020-05-09 02:51:32 +00:00
public: true
closeMarker:
type: String
2020-03-30 01:14:44 +00:00
default: "```"
title: Close Marker
hint: String to use as closing delimiter
order: 3
2020-05-09 02:51:32 +00:00
public: true
imageFormat:
type: String
default: svg
title: Image Format
hint: Format to use for rendered PlantUML images
enum:
- svg
- png
- latex
- ascii
order: 4
2020-05-09 02:51:32 +00:00
public: true