The highlight ceases to exist when the input field is edited. It also stops working when I change the language. When this occurs, I receive the following message in the browser console: ```console Element previously highlighted. To highlight again, first unset `dataset.highlighted`. <code class="hljs language-json" style="top: 0px; left: 0px; font-size: 13px; padding: 0px 20px 20px;" data-highlighted="yes">{ "Hello": "World" } </code> ``` https://github.com/justcaliturner/simple-code-editor/assets/26576201/40e646f8-f615-4fce-b392-a3cd99e2c8d3 Here is the snippet of my code: ```html <CodeEditor :class="hljs" font-size="13px" :languages="[ ['json', 'JSON'], ['yml', 'YAML'] ]" v-model="value" width="100%" @lang="getLanguage" /> ``` ```js // <script setup> // Composition API import hljs from 'highlight.js' import CodeEditor from 'simple-code-editor' ``` Could anyone tell me if I'm missing something? @justcaliturner, any ideas?
The highlight ceases to exist when the input field is edited.
It also stops working when I change the language.
When this occurs, I receive the following message in the browser console:
Gravacao.de.Tela.2023-10-10.as.13.01.45.mov
Here is the snippet of my code:
Could anyone tell me if I'm missing something?
@justcaliturner, any ideas?