0

我想在我的网页上使用 prettyprint,但它不起作用......

我有一个 html 片段,但浏览器将其解释为真正的 html 代码。

在html头中,我已经实现了

    <script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<link rel="stylesheet" href="${cs.qualify("/css/prettify.css")}" type="text/css" media="screen" />

和我的 html 代码我插入到这样的 pre 标签中

<pre class="prettyprint"><div id="test"><h2>Hello</h2></div></pre>

我不知道,什么问题...

有人可以帮帮我吗?!

谢谢

4

1 回答 1

0

您需要确保将尖括号转换为pre标记中的 HTML 字符实体。例如:

// This is <div>
&lt;div&gt;

// This is </div>
&lt;/div&gt;
于 2013-04-03T11:07:05.470 回答