Orison

Orison smoking pipe icon

A static site generator and server based upon lit-html

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