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
afterを追加しようとしましたclass="prettyprint
が、うまくいきませんでした。
私は何が欠けていますか?