如何在浏览器中将这些标记呈现为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>
答案 0 :(得分:3)
您需要为括号使用HTML实体。将<
更改为<
,将>
更改为>
答案 1 :(得分:2)
您需要将<
和>
字符分别转义为<
和>
。
因此,在您的HTML中,为了显示:
<testname=tar_tests.sh>
你应该写:
<testname=tar_tests.sh>
答案 2 :(得分:0)
如果您将文本包装在<pre>
... </pre>
中,它将被格式化,您无需将所有标记更改为HTML实体。保留空白和布局。
<pre>
<testname=tar_tests.sh>
...
</pre>