import type { App, Directive } from 'vue' import hljs from 'highlight.js' import includeCode from '@/utils/functions/includeCode' hljs.configure({ ignoreUnescapedHTML: true }) function highlightCode(el: HTMLElement) { if (includeCode(el.textContent)) hljs.highlightBlock(el) } export default function setupHighlightDirective(app: App) { const highLightDirective: Directive = { mounted(el: HTMLElement) { highlightCode(el) }, updated(el: HTMLElement) { highlightCode(el) }, } app.directive('highlight', highLightDirective) }