使用google-code-prettify显示XML

时间:2014-10-30 14:59:34

标签: prettify google-code-prettify

我似乎无法使用谷歌美化来处理基本的XML:任何人都可以使用它,或者可以看到我做错了什么:这是我的代码:

<html>
<head>
<meta charset="utf-8" />

<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?autoload=true&amp;skin=sunburst&amp;lang=xml"></script>

</head>

<body>
<h1>XML Output</h1>

<pre class="prettyprint" id="quine" style="border:4px solid #88c">

<Rest_appt_pull licenseKey="123" passWord="456" start="30-oct-2014 00:00:00" finish="31-oct-2014 23:59:59" p_method="event">
<timings>
<entry label="Read" 
time=".03" 
segment=".03" />
<entry label="Processing XML" 
time=".04" 
segment=".01" />
</timings>
</Rest_appt_pull>

</pre>

</body>
</html>

感谢任何帮助

2 个答案:

答案 0 :(得分:8)

根本原因是html标记符号。

更改&lt;到&lt;

更改&gt;到&gt;

答案 1 :(得分:4)

您需要首先对xml代码示例进行html编码。您可以使用其中一个可用的在线工具来执行此操作。然后将其包装在pre / code

<pre class="prettyprint lang-xml"> ... your html encoded xml code ... </pre>

并在网站上附加js代码。