1

如何在浏览器中将这些标签呈现为 html,例如 chrome?

<testname=tar_tests.sh>
    <description>
        Test basic functionality of `tar` command.
    <\description>
    <test_location>
        ltp/testcases/commands/tar/tar_tests.sh
    <\test_location>
<\testname>

<testname=unzip>
    <description>
        Test basic functionality of `unzip` command.

    <\description>
    <test_location>
        ltp/testcases/commands/unzip
    <\test_location>
<\testname>

输出:

<testname=tar_tests.sh> <description> Test basic functionality of `tar` command. <\description> <test_location> ltp/testcases/commands/tar/tar_tests.sh <\test_location> <\testname> <testname=unzip> <description> Test basic functionality of `unzip` command. <\description> <test_location> ltp/testcases/commands/unzip <\test_location> <\testname>
4

3 回答 3

3

您需要为括号使用 HTML 实体。更改<&lt;>_&gt;

于 2012-05-01T17:46:11.570 回答
2

您需要将<and>字符分别转义为&lt;and &gt;

因此,在您的 HTML 中,为了显示:

<testname=tar_tests.sh>

你应该写:

&lt;testname=tar_tests.sh&gt;
于 2012-05-01T17:46:10.647 回答
0

如果您将文本包装在<pre>...中</pre>,它将被格式化,您不需要将所有标签更改为 HTML 实体。保留空白和布局。

<pre>
&lt;testname=tar_tests.sh>
...
</pre>
于 2012-05-01T17:52:57.200 回答