---
createdAt: 2026-01-20
updatedAt: 2026-01-22
title: HTML Content
description: Learn how to declare and use HTML content with custom components in Intlayer. Follow this documentation to embed rich HTML-like content with dynamic component replacement in your internationalized project.
keywords:
- HTML
- Custom Components
- Rich Content
- Intlayer
- Next.js
- JavaScript
- React
- Vue
- Svelte
slugs:
- doc
- concept
- content
- html
history:
- version: 8.0.0
date: 2026-01-22
changes: Add HTMLRenderer / useHTMLRenderer / renderHTML utility
- version: 8.0.0
date: 2026-01-20
changes: Add HTML parsing support
---
# HTML Content / HTML in Intlayer
Intlayer supports HTML content, allowing you to embed rich, structured content within your dictionaries. This content can be rendered with standard HTML tags or replaced with custom components at runtime.
## Declaring HTML Content
You can declare HTML content using the `html` function or simply as a string.
<Tabs>
<Tab label="Manual Wrapping" value="manual-wrapping">
Use the `html` function to explicitly declare HTML content. This ensures standard tags are mapped correctly even if automatic detection is disabled.
```typescript fileName="htmlDictionary.content.ts"
import { html, type Dictionary } from "intlayer";
const htmlDictionary = {
key: "app",
contentAutoTransformation: true, // can be set in config file
content: {
myHtmlContent: html("<p>Hello <strong>World</strong></p>"),
},
} satisfies Dictionary;
export default htmlDictionary;
```
</Tab>
<Tab label="Automatic Detection" value="automatic-detection">
If the string contains common HTML tags (e.g., `<p>`, `<div>`, `<strong>`, etc.), Intlayer will automatically transform it.
```typescript fileName="htmlDictionary.content.ts"
export default {
key: "app",
contentAutoTransformation: true, // can be set in config file
content: {
myHtmlContent: "<p>Hello <strong>World</strong></p>",
},
};
```
</Tab>
<Tab label="External Files" value="external-files">
Import HTML content from files. Note that currently `file()` function returns a string, which will be auto-detected as HTML if it contains tags.
```typescript fileName="htmlDictionary.content.ts"
import { html, file, t } from "intlayer";
export default {
key: "app",
content: {
content: t({
en: html(file("./content.en.html")),
fr: html(file("./content.fr.html")),
}),
},
};
```
</Tab>
</Tabs>
### The `html()` Node
The `html()` function is a new feature in Intlayer v8 that allows you to explicitly define HTML content in your dictionaries. While Intlayer can often auto-detect HTML content, using the `html()` function provides several advantages:
- **Type Safety**: The `html()` function allows you to define the expected props for custom components, providing better autocompletion and type checking in your editor.
- **Explicit Declaration**: It ensures that a string is always treated as HTML, even if it doesn't contain standard HTML tags that would trigger auto-detection.
- **Custom Component Definition**: You can pass a second argument to `html()` to define the custom components and their expected prop types.
```typescript
import { html } from "intlayer";
const myContent = html(
"<MyCustomComponent title='Hello'>World</MyCustomComponent>",
{
MyCustomComponent: {
title: "string",
children: "node",
},
}
);
```
When using the `.use()` method on an HTML node, the components you provide will be checked against the definition provided in the `html()` function (if available).
---
## Rendering HTML
Rendering can be handled automatically by Intlayer's content system or manually using specialized tools.
### Automatic Rendering (using `useIntlayer`)
When you access content via `useIntlayer`, HTML nodes are already prepared for rendering.
<Tabs group="framework">
<Tab label="React / Next.js" value="react">
HTML nodes can be rendered directly as JSX. Standard tags work automatically.
```tsx fileName="App.tsx"
import { useIntlayer } from "react-intlayer";
const AppContent = () => {
const { myHtmlContent } = useIntlayer("app");
return <div>{myHtmlContent}</div>;
};
```
Use the `.use()` method to provide custom components or override tags:
```tsx
{myHtmlContent.use({
p: (props) => <p className="prose" {...props} />,
CustomLink: ({ children }) => <a href="/details">{children}</a>,
})}
```
</Tab>
<Tab label="Vue" value="vue">
In Vue, HTML content can be rendered using the `component` built-in.
```vue fileName="App.vue"
<script setup>
import { useIntlayer } from "vue-intlayer";
const { myHtmlContent } = useIntlayer("app");
</script>
<template>
<component :is="myHtmlContent" />
</template>
```
Use `.use()` for overrides:
```vue
<component :is="myHtmlContent.use({ h1: 'h2' })" />
```
</Tab>
<Tab label="Svelte" value="svelte">
Svelte renders HTML nodes as strings. Use `{@html}` to render it.
```svelte
<script lang="ts">
import { useIntlayer } from "svelte-intlayer";
const content = useIntlayer("app");
</script>
{@html $content.myHtmlContent}
```
</Tab>
<Tab label="Preact" value="preact">
Preact supports HTML nodes directly in the JSX.
```tsx fileName="App.tsx"
import { useIntlayer } from "preact-intlayer";
const AppContent = () => {
const { myHtmlContent } = useIntlayer("app");
return <div>{myHtmlContent}</div>;
};
```
</Tab>
<Tab label="Solid" value="solid">
Solid supports HTML nodes directly in the JSX.
```tsx fileName="App.tsx"
import { useIntlayer } from "solid-intlayer";
const AppContent = () => {
const { myHtmlContent } = useIntlayer("app");
return <div>{myHtmlContent}</div>;
};
```
</Tab>
<Tab label="Angular" value="angular">
Angular uses the `[innerHTML]` directive to render HTML content.
```typescript fileName="app.component.ts"
import { Component } from "@angular/core";
import { useIntlayer } from "angular-intlayer";
@Component({
selector: "app-root",
template: `<div [innerHTML]="content().myHtmlContent"></div>`,
})
export class AppComponent {
content = useIntlayer("app");
}
```
Use the `.use()` method to provide custom components or override tags:
```typescript
content().myHtmlContent.use({
p: { class: "prose" },
CustomLink: { href: "/details" },
})
```
</Tab>
</Tabs>
## Global Configuration with `HTMLProvider`
You can configure HTML rendering globally for your entire application. This is ideal for defining custom components that should be available in all HTML content.
<Tabs group="framework">
<Tab label="React / Next.js" value="react">
```tsx fileName="AppProvider.tsx"
import { HTMLProvider } from "react-intlayer";
export const AppProvider = ({ children }) => (
<HTMLProvider
components={{
p: (props) => <p className="prose" {...props} />,
CustomLink: ({ children }) => <a href="/details">{children}</a>,
}}
>
{children}
</HTMLProvider>
);
```
</Tab>
<Tab label="Vue" value="vue">
```typescript fileName="main.ts"
import { createApp, h } from "vue";
import { installIntlayer, installIntlayerHTML } from "vue-intlayer";
import App from "./App.vue";
const app = createApp(App);
app.use(installIntlayer);
app.use(installIntlayerHTML, {
components: {
p: (props, { slots }) => h("p", { class: "prose", ...props }, slots.default?.()),
CustomLink: (props, { slots }) => h("a", { href: "/details", ...props }, slots.default?.()),
},
});
app.mount("#app");
```
</Tab>
<Tab label="Svelte" value="svelte">
```svelte fileName="App.svelte"
<script lang="ts">
import { HTMLProvider } from "svelte-intlayer";
import MyCustomP from "./MyCustomP.svelte";
</script>
<HTMLProvider
components={{
p: MyCustomP,
}}
>
<slot />
</HTMLProvider>
```
</Tab>
<Tab label="Preact" value="preact">
```tsx fileName="AppProvider.tsx"
import { HTMLProvider } from "preact-intlayer";
export const AppProvider = ({ children }) => (
<HTMLProvider
components={{
p: (props) => <p className="prose" {...props} />,
}}
>
{children}
</HTMLProvider>
);
```
</Tab>
<Tab label="Solid" value="solid">
```tsx fileName="AppProvider.tsx"
import { HTMLProvider } from "solid-intlayer";
export const AppProvider = (props) => (
<HTMLProvider
components={{
p: (props) => <p className="prose" {...props} />,
}}
>
{props.children}
</HTMLProvider>
);
```
</Tab>
<Tab label="Angular" value="angular">
```typescript fileName="app.config.ts"
import { createIntlayerMarkdownProvider } from "angular-intlayer";
export const appConfig: ApplicationConfig = {
providers: [
createIntlayerMarkdownProvider({
components: {
p: { class: "prose" },
CustomLink: { href: "/details" },
},
}),
],
};
```
</Tab>
</Tabs>
---
### Manual Rendering & Advanced Tools
If you need to render raw HTML strings or have more control over the component mapping, use the following tools.
<Tabs group="framework">
<Tab label="React / Next.js" value="react">
#### `<HTMLRenderer />` Component
Render an HTML string with specific components.
```tsx
import { HTMLRenderer } from "react-intlayer";
<HTMLRenderer components={{ p: MyCustomP }}>
{"<p>Hello World</p>"}
</HTMLRenderer>
```
#### `useHTMLRenderer()` Hook
Get a pre-configured renderer function.
```tsx
import { useHTMLRenderer } from "react-intlayer";
const renderHTML = useHTMLRenderer({
components: { strong: (props) => <strong {...props} className="text-red-500" /> }
});
return renderHTML("<p>Hello <strong>World</strong></p>");
```
#### `renderHTML()` Utility
Standalone utility for rendering outside of components.
```tsx
import { renderHTML } from "react-intlayer";
const jsx = renderHTML("<p>Hello</p>", { components: { p: 'div' } });
```
</Tab>
<Tab label="Vue" value="vue">
#### `<HTMLRenderer />` Component
```vue
<script setup>
import { HTMLRenderer } from "vue-intlayer";
</script>
<template>
<HTMLRenderer content="<p>Hello World</p>" />
</template>
```
</Tab>
<Tab label="Svelte" value="svelte">
#### `<HTMLRenderer />` Component
```svelte
<script lang="ts">
import { HTMLRenderer } from "svelte-intlayer";
</script>
<HTMLRenderer value="<p>Hello World</p>" />
```
#### `useHTMLRenderer()` Hook
```svelte
<script lang="ts">
import { useHTMLRenderer } from "svelte-intlayer";
const render = useHTMLRenderer();
</script>
{@html render("<p>Hello World</p>")}
```
#### `renderHTML()` Utility
```svelte
<script lang="ts">
import { renderHTML } from "svelte-intlayer";
</script>
{@html renderHTML("<p>Hello World</p>")}
```
</Tab>
<Tab label="Preact" value="preact">
#### `<HTMLRenderer />` Component
```tsx
import { HTMLRenderer } from "preact-intlayer";
<HTMLRenderer>
{"<p>Hello World</p>"}
</HTMLRenderer>
```
#### `useHTMLRenderer()` Hook
```tsx
import { useHTMLRenderer } from "preact-intlayer";
const render = useHTMLRenderer();
return <div>{render("<p>Hello World</p>")}</div>;
```
#### `renderHTML()` Utility
```tsx
import { renderHTML } from "preact-intlayer";
return <div>{renderHTML("<p>Hello World</p>")}</div>;
```
</Tab>
<Tab label="Solid" value="solid">
#### `<HTMLRenderer />` Component
```tsx
import { HTMLRenderer } from "solid-intlayer";
<HTMLRenderer>
{"<p>Hello World</p>"}
</HTMLRenderer>
```
#### `useHTMLRenderer()` Hook
```tsx
import { useHTMLRenderer } from "solid-intlayer";
const render = useHTMLRenderer();
return <div>{render("<p>Hello World</p>")}</div>;
```
#### `renderHTML()` Utility
```tsx
import { renderHTML } from "solid-intlayer";
return <div>{renderHTML("<p>Hello World</p>")}</div>;
```
</Tab>
<Tab label="Angular" value="angular">
#### `IntlayerMarkdownService` Service
Render an HTML string using the service.
```typescript
import { IntlayerMarkdownService } from "angular-intlayer";
export class MyComponent {
constructor(private markdownService: IntlayerMarkdownService) {}
renderHTML(html: string) {
return this.markdownService.renderMarkdown(html);
}
}
```
</Tab>
</Tabs>
---
## Options Reference
These options can be passed to `HTMLProvider`, `HTMLRenderer`, `useHTMLRenderer`, and `renderHTML`.
| Option | Type | Default | Description |
| :----------- | :-------------------- | :------ | :--------------------------------------------------------------------------------------------------------- |
| `components` | `Record<string, any>` | `{}` | A map of HTML tags or custom component names to components. |
| `renderHTML` | `Function` | `null` | A custom rendering function to completely replace the default HTML parser (Only for Vue/Svelte providers). |
> Note: For React and Preact, standard HTML tags are automatically provided. You only need to pass the `components` prop if you want to override them or add custom components.