I want to call Prism.highlightElement or Prism.highlightAll after doing some other javascript processing on my code blocks. I can somewhat control the moment that Prism processes by where I place the <script src="prism.js"></script>
but I don't see a way to disable automated processing.
How do I stop prism.js from processing automatically
256 Views Asked by Sigfried At
1
Super kludgy answer:
Even though I asked for the development, not minified, version of prism.js when I download, what I got is kind of minified. Anyway, I found this bit of code:
and changed it to this:
So, nothing gets highlighted now, until I explicitly call
Prism.highlightAll()
.