Unsafe HTML
/src/pages/example.js
import { html, unsafeHTML } from 'orison';
import someCMS from 'some-cms';
const htmlFromCMS = someCMS.get('...');
export default context => html`
${unsafeHTML(htmlFromCMS)}
`
A static site generator and server based upon lit-html
import { html, unsafeHTML } from 'orison';
import someCMS from 'some-cms';
const htmlFromCMS = someCMS.get('...');
export default context => html`
${unsafeHTML(htmlFromCMS)}
`