有什么办法可以插入包含源代码的文件的链接,而不是直接将代码粘贴到网页中来实现语法高亮?(具有“在 CDATA 中放置几乎任何东西而不必逃避任何东西的能力......”)
<pre class="brush: js">
/home/lawlist/archives/init.el
</pre>
有什么办法可以插入包含源代码的文件的链接,而不是直接将代码粘贴到网页中来实现语法高亮?(具有“在 CDATA 中放置几乎任何东西而不必逃避任何东西的能力......”)
<pre class="brush: js">
/home/lawlist/archives/init.el
</pre>
@beautifulcoder 在相关线程中解决了这个问题: 如何包含文件,并将其内容包装在 `pre` 标记中
<script type="text/javascript">
var ajaxRq = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Msxml2.XMLHTTP");
ajaxRq.open("GET", "/home/lawlist/archives/init.el", false);
ajaxRq.send(null);
document.write('<pre class="brush: lisp">');
document.write(ajaxRq.responseText);
document.write('</pre>');
</script>