我正在尝试使用 google-code-prettify 来突出显示某些代码的语法,但浏览器正在呈现我包含在标签中的 HTML。我已按照入门说明进行操作
例如
<pre class="prettyprint">
<head>
<link href="stylesheet.css" rel="stylesheet">
</head>
<body>
<div id="divId">
<h1 class="h1Class">Hello world</h1>
</div>
</body>
</pre>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
在这里,我得到的只是Hello world
. 我试过lang-html
在之后添加class="prettyprint
,没有用。
我错过了什么?