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

> Convert HTML markup into readable plain text.

The **HTML to Text** action removes markup while preserving readable structure
for headings, paragraphs, lists, and links. Use it before keyword matching,
plain-text notifications, or AI prompts that do not need HTML.

## Inputs

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

## Outputs

| Output   | Type   | Description               |
| -------- | ------ | ------------------------- |
| **Text** | String | The converted plain text. |

For example:

```html theme={null}
<p>Hello <strong>Ada</strong>.</p>
<p>Your order is ready.</p>
```

produces readable text with the two paragraph contents and no `<p>` or
`<strong>` tags.

<Note>
  This is a content conversion, not an HTML sanitizer. The output is plain text,
  but conversion choices such as line wrapping and link rendering follow the
  action's built-in defaults.
</Note>
