---
title: "<Html>"
description: "A raw HTML escape hatch — pasted markup is preserved verbatim (sanitized)."
url: https://www.unitpost.com/components/html
section: Components
updated: 2026-07-14
---
# <Html>

## <Html>

> A raw HTML escape hatch — pasted markup is preserved verbatim (sanitized).

There's no <Html> tag in code mode — any markup that isn't a known component (e.g. a <table> or <div>) automatically becomes an Html block and is emitted verbatim at render. Content passes through the 3-layer HTML sanitizer (scripts, event handlers, and javascript: URLs are stripped) both on save and at render. {{variables}} interpolate inside the markup. Prefer the built-in components when possible — raw HTML is on you to keep Outlook-safe.

```tsx
<table role="presentation" width="100%"><tr><td>Custom markup</td></tr></table>
```

## Related

- [<Section>](https://www.unitpost.com/components/section): A padded layout container that groups blocks with a background.
- [<Row>](https://www.unitpost.com/components/row): A multi-column container — holds <Column> children side by side.
- [<Column>](https://www.unitpost.com/components/column): A vertical slice of a Row. Only valid inside <Row>.
