> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Markdown to HTML

> Render Markdown text as HTML.

The **Markdown to HTML** action renders headings, emphasis, links, lists, code
blocks, and other supported Markdown syntax into an HTML string.

## Inputs

| Input        | Type   | Required | Description                  |
| ------------ | ------ | -------- | ---------------------------- |
| **Markdown** | String | Yes      | The Markdown text to render. |

## Outputs

| Output   | Type   | Description               |
| -------- | ------ | ------------------------- |
| **HTML** | String | The rendered HTML markup. |

For example:

```markdown theme={null}
## Status

The build is **ready**.
```

renders approximately:

```html theme={null}
<h2>Status</h2>
<p>The build is <strong>ready</strong>.</p>
```

<Warning>
  The generated HTML is not sanitized. Markdown can contain raw HTML, links, and
  other content that is unsafe to render in a trusted page or email without a
  separate sanitization policy.
</Warning>
