如何让 Prism.js 在另一个 JS 文件设置内容之后对代码部分进行语法高亮?

huangapple go评论68阅读模式
英文:

How do I make Prism.js syntax highlight a section of code AFTER another JS file sets the contents?

问题

Prism.js 似乎在加载时运行语法高亮显示,我想在从JS加载代码后运行语法高亮显示。是否可以使用Prism来实现这一点?

英文:

I am currently trying to make a website where different codes are loaded in at different times. However the content of these codes are stored in a JSON file and are loaded in to the page through JS.

Prism.js seems to run syntax highlighting at load time and I would like to run syntax highlighting on the code after it has been loaded from the JS.

Is there any way I can do this using Prism?

答案1

得分: 1

你可以在内容加载后调用其中之一:highlightAll()highlightAllUnder()highlightElement()来进行高亮显示:

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->
setTimeout(
  () => {
    document.body.insertAdjacentHTML(
      'beforeend',
      '<pre><code class="language-css">.async-loaded { color: red }</code></pre>',
    );
    
    window.Prism.highlightAll();
  },
  1000
);

<!-- language: lang-html -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" integrity="sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/autoloader/prism-autoloader.min.js" integrity="sha512-SkmBfuA2hqjzEVpmnMt/LINrjop3GKWqsuLSSB3e7iBmYK7JuWw4ldmmxwD9mdm2IRTTi0OxSAfEGvgEi0i2Kw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>

<pre><code class="language-css">.pre-loaded { color: green }</code></pre>

<!-- end snippet -->
英文:

You should be able to call one of highlightAll(), highlightAllUnder() or highlightElement() after the content has been loaded to highlight them:

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

setTimeout(
  () =&gt; {
    document.body.insertAdjacentHTML(
      &#39;beforeend&#39;,
      &#39;&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;.async-loaded { color: red }&lt;/code&gt;&lt;/pre&gt;&#39;,
    );
    
    window.Prism.highlightAll();
  },
  1000
);

<!-- language: lang-html -->

&lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css&quot; integrity=&quot;sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==&quot; crossorigin=&quot;anonymous&quot; referrerpolicy=&quot;no-referrer&quot; /&gt;
&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js&quot; integrity=&quot;sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==&quot; crossorigin=&quot;anonymous&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/autoloader/prism-autoloader.min.js&quot; integrity=&quot;sha512-SkmBfuA2hqjzEVpmnMt/LINrjop3GKWqsuLSSB3e7iBmYK7JuWw4ldmmxwD9mdm2IRTTi0OxSAfEGvgEi0i2Kw==&quot; crossorigin=&quot;anonymous&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;/script&gt;

&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;.pre-loaded { color: green }&lt;/code&gt;&lt;/pre&gt;

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年6月25日 18:50:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/76550034.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定