Creation:2026-01-20Last update:2026-01-22

    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.

    Use the html function to explicitly declare HTML content. This ensures standard tags are mapped correctly even if automatic detection is disabled.

    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;

    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 specialised tools.

    Automatic Rendering (using useIntlayer)

    When you access content via useIntlayer, HTML nodes are already prepared for rendering.

    HTML nodes can be rendered directly as JSX. Standard tags work automatically.

    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>,})}

    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.

    AppProvider.tsx
    import { HTMLProvider } from "react-intlayer/html";export const AppProvider = ({ children }) => (  <HTMLProvider    components={{      p: (props) => <p className="prose" {...props} />,      CustomLink: ({ children }) => <a href="/details">{children}</a>,    }}  >    {children}  </HTMLProvider>);

    Manual Rendering & Advanced Tools

    If you need to render raw HTML strings or have more control over the component mapping, use the following tools.

    <HTMLRenderer /> Component

    Render an HTML string with specific components.

    tsx
    import { HTMLRenderer } from "react-intlayer/html";<HTMLRenderer components={{ p: MyCustomP }}>  {"<p>Hello World</p>"}</HTMLRenderer>

    useHTMLRenderer() Hook

    Get a pre-configured renderer function.

    tsx
    import { useHTMLRenderer } from "react-intlayer/html";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/html";const jsx = renderHTML("<p>Hello</p>", { components: { p: 'div' } });

    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.