我正在使用 google-code-prettify 来语法高亮 CPP 代码。我使用它如下。
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?lang=cpp"></script>
<pre class="prettyprint"><code>
#include <iostream>
using namespace std;
int main(){
cout << "Hellow world!" << endl;
return 0;
}
</code>
</pre>
在我得到的结果中,“iostream”部分消失了。但是其余的代码完美地突出了语法:)
#include
using namespace std;
int main(){
cout << "Hellow world!" << endl;
return 0;
}
我在“<”和“>”之间尝试了其他代码。他们也被删除了。为什么会这样?我如何获得整个代码?
感谢您的帮助BR //Asmelash Tse。