Tidied up 'Render Markdown' operation

This commit is contained in:
n1474335 2019-08-30 15:46:24 +01:00
parent e129425d8d
commit f8d1cf2f60
3 changed files with 40 additions and 6 deletions

View file

@ -358,7 +358,8 @@
"BSON serialise",
"BSON deserialise",
"To MessagePack",
"From MessagePack"
"From MessagePack",
"Render Markdown"
]
},
{

View file

@ -20,8 +20,8 @@ class RenderMarkdown extends Operation {
super();
this.name = "Render Markdown";
this.module = "Default";
this.description = "Renders input Markdown as HTML.";
this.module = "Code";
this.description = "Renders input Markdown as HTML. HTML rendering is disabled to avoid XSS.";
this.infoURL = "https://wikipedia.org/wiki/Markdown";
this.inputType = "string";
this.outputType = "html";