markdown_to_html
Convert Markdown content into HTML format using this tool. Ideal for developers and content creators looking to transform text for web integration.
Instructions
Convert Markdown to HTML
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mdContent | Yes | Markdown content to convert |
Input Schema (JSON Schema)
{
"properties": {
"mdContent": {
"description": "Markdown content to convert",
"type": "string"
}
},
"required": [
"mdContent"
],
"type": "object"
}