Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

highlight.worker.js 360B

123456789101112
  1. import {highlightBlock} from 'highlight.js';
  2. import {createWindow} from 'domino';
  3. self.onmessage = function ({data}) {
  4. const window = createWindow();
  5. self.document = window.document;
  6. const {index, html} = data;
  7. document.body.innerHTML = html;
  8. highlightBlock(document.body.firstChild);
  9. self.postMessage({index, html: document.body.innerHTML});
  10. };