我想在我的网页上使用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 class="prettyprint"><div id="test"><h2>Hello</h2></div></pre>
我不知道,问题是什么......
有人可以帮帮我吗?!!
由于
答案 0 :(得分:0)
您需要确保将尖括号转换为 pre 标记内的HTML字符实体。例如:
// This is <div>
<div>
// This is </div>
</div>