/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-insert-snippets-int-7ba9b60b822f-insert-snippets-into-jsx-s0771-c0000.md
Insert snippets into JSX - hono-docs
Insert snippets into JSX Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt insert snippets into jsx...
Insert snippets into JSX
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#insert-snippets-into-jsx
Summary
Insert the inline script into JSX: tsx app.get('/', (c) => { return c.html( Test Site {html` // No need to use dangerouslySetInnerHTML. // If you write it here, it will not be escaped. `} Hello! ) })
Content
Insert the inline script into JSX:
app.get('/', (c) => {
return c.html(
<html>
<head>
<title>Test Site</title>
{html`
<script>
// No need to use dangerouslySetInnerHTML.
// If you write it here, it will not be escaped.
</script>
`}
</head>
<body>Hello!</body>
</html>
)
})