Skip to main content
Render markdown content with full formatting support.
{
  "type": "object",
  "properties": {
    "type": {
      "const": "Markdown",
      "default": "Markdown",
      "type": "string"
    },
    "id": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "HTML id attribute for CSS targeting. Applied to the outermost element."
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling. Accepts a Responsive() for breakpoint-aware classes."
    },
    "content": {
      "description": "Markdown content",
      "type": "string"
    }
  },
  "required": [
    "type",
    "content"
  ]
}