You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
433 B
TypeScript
16 lines
433 B
TypeScript
2 years ago
|
import type { App, Directive } from 'vue'
|
||
|
import hljs from 'highlight.js'
|
||
|
|
||
|
const regexp = /^(?:\s{4}|\t).+/gm
|
||
|
|
||
|
export default function setupHighlightDirective(app: App) {
|
||
|
const highLightDirective: Directive<HTMLElement> = {
|
||
|
mounted(el: HTMLElement) {
|
||
|
if (el.textContent?.indexOf(' = ') !== -1 || el.textContent.match(regexp))
|
||
|
hljs.highlightBlock(el)
|
||
|
},
|
||
|
}
|
||
|
|
||
|
app.directive('highlight', highLightDirective)
|
||
|
}
|