2013-04-03 126 views
0

我想在我的網頁使用prettyprint,但它不工作...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代碼,我插入預先標籤這樣

我不知道,什麼問題...

有人可以幫我嗎?!!

感謝

回答

0

你需要確保在尖括號您標籤內轉換到HTML字符實體。例如:

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

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