Viewing File: /home/markqprx/iniasli.pro/client/text-editor/highlight/highlight-code.ts

export function highlightCode(el: HTMLElement) {
  import('@common/text-editor/highlight/highlight').then(({hljs}) => {
    el.querySelectorAll('pre code').forEach(block => {
      hljs.highlightElement(block as HTMLElement);
    });
  });
}
Back to Directory File Manager