/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-raw-d9c510feb78e-raw-s0775-c0000.md
`raw()` - hono-docs
raw() Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt raw Summary Content
raw()
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#raw
Summary
## Content
```ts
app.get('/', (c) => {
const name = 'John "Johnny" Smith'
return c.html(html`<p>I'm ${raw(name)}.</p>`)
})