HTML to markdown
Description:
Convert markdown text to HTML text.
This includes binding expressions to inflate the markdown with values.
{
"type": "markdown",
"action": "to_html",
"args": {
"markdown": "$data.markdown",
"target": "$data.html"
}
}
If you have string inflation markers in the markdown you can define parameters to first inflate the markdown values and then generate the HTML.
{
"type": "markdown",
"action": "to_html",
"args": {
"markdown": "$data.markdown",
"parameters": {
"code": "A1110"
},
"target": "$data.html"
}
}