> ## 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.

# HTML to Markdown

> Convert HTML markup into Markdown text.

The **HTML to Markdown** action converts an HTML string into a Markdown
representation. Use it to make web or email content easier to store, summarize,
or send through text-oriented actions.

## Inputs

| Input    | Type   | Required | Description                 |
| -------- | ------ | -------- | --------------------------- |
| **HTML** | String | Yes      | The HTML markup to convert. |

## Outputs

| Output       | Type   | Description                  |
| ------------ | ------ | ---------------------------- |
| **Markdown** | String | The converted Markdown text. |

For example:

```html theme={null}
<h2>Status</h2>
<p>The build is <strong>ready</strong>.</p>
<ul>
  <li>Tests passed</li>
  <li>Review complete</li>
</ul>
```

becomes Markdown similar to:

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

The build is **ready**.

- Tests passed
- Review complete
```

<Note>
  HTML and Markdown do not have identical feature sets. Complex tables, custom
  elements, inline styles, and layout markup may be simplified or omitted.
</Note>
