JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "highlight-code.ts"

Full Path: /home/markqprx/iniasli.pro/client/text-editor/highlight/highlight-code.ts
File size: 242 bytes
MIME-type: text/plain
Charset: utf-8

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