# markdown

The `markdown` step type renders Markdown with the Atmos UI theme, so your custom commands and workflows can print richly formatted summaries and instructions that match the rest of the Atmos CLI.

```yaml
steps:
  - name: summary
    type: markdown
    content: |
      ## Deployment Summary

      Stack: `{{ .env.ATMOS_STACK }}`
```

## Fields

- **`content`**
  Required. Markdown text. Supports templates.

The step result value is the rendered content source after template resolution.
