Search code examples
htmltypescriptastrojs

Astro.JS Display HTML from JSON data content


I have HTML tags within a JSON value, accessed as an Astro data collection type. How do I display this HTML using AstroJS? With React, I used dangerouslySetInnerHTML on a div element.


Solution

  • In Astro components you'd use the set:html directive to do this:

    ---
    const htmlString = "<p>Some HTML</p>";
    ---
    
    <div set:html={htmlString} />