matthewp / ocean-prism

Prism plugin for Ocean

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ocean Prism

A Prism plugin for Ocean.

import { Ocean } from 'https://cdn.spooky.click/r/ocean/latest/mod.js';
import { OceanPrism } from 'https://cdn.spooky.click/ocean-prism/1.1.1/mod.js';

let { html } = new Ocean({
  document,
  plugins: [OceanPrism.createInstance]
});
let iter = html`<pre><code class="language-js">let foo = 'bar'</code></pre>`;

let out = '';
for await(let chunk of iter) {
  out += chunk;
}
console.log(out); // Syntax highlighted HTML

About

Prism plugin for Ocean


Languages

Language:JavaScript 100.0%