---
title: SafeHtml
source: https://github.com/remix-run/remix/blob/remix@3.0.0-beta.3/packages/html-template/src/lib/safe-html.ts#L7
---

# SafeHtml

## Summary

A string that is safe to render as HTML without escaping.

## Signature

```ts
type SafeHtml = String & { [kSafeHtml]: true };

```