/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-text-90153a5fde3c-text-s0555-c0000.md
text() - hono-docs
text() Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt text Summary Render text as Content Type:...
text()
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#text
Summary
Render text as Content-Type: text/plain. ts twoslash import { Hono } from 'hono' const app = new Hono() // ---cut--- app.get('/say', (c) => { return c.text('Hello!') })
Content
Render text as Content-Type: text/plain.
import { Hono } from 'hono'
const app = new Hono()
// ---cut---
app.get('/say', (c) => {
return c.text('Hello!')
})