We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
c-html directive can insert raw HTML into a container node.
c-html
This may be helpful when integrating with third-party libraries, e.g. render HTML generated from markdown.
<!-- index.html --> <div c-html="rawHtml" />
// main.ts data: { rawHtml: "<p>Hello world</p>" }
<!-- Compile result --> <div> <p>Hello world</p> </div>