Highlight.js <pre> <code> renders the div element directly, how to set it?

highlight.js

   

does not show

... < / div >, but renders it. How can I write it?

Jun.15,2022

Vue.directive('highlight',function (el) {
  let blocks = el.querySelectorAll('pre code');
  blocks.forEach((block)=>{
    hljs.highlightBlock(block)
  })
})

<p v-html="markdownhtml" v-highlight>

https://codeshelper.com/a/11...

Menu