1

これらのタグをブラウザでhtmlとしてレンダリングするにはどうすればよいですか?

<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

<>文字を&lt;それぞれととしてエスケープする必要があり&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 に答える