5

我似乎无法让 google 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>

任何帮助将不胜感激

4

2 回答 2

8

根本原因是html标签符号。

将 < 更改为&lt;

将 > 更改为&gt;

于 2016-06-17T12:38:18.480 回答
4

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

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

并在网站上附加js代码。

于 2015-08-23T23:54:56.333 回答