有什么方法可以在不解析的情况下显示 HTML 标签?像以前一样完美的标签XMP
,但现在它被替换PRE
为不太酷的标签。看看这个例子:
//This used to NOT PARSE HTML even if you used standard < and >.
<XMP>
<a hred="http://example.com">Link</a>
</XMP>
//New PRE tag requires < and > as replacement for < and >.
<PRE>
<a href="http://example.com">Link</A>
</PRE>
我正在寻找的是相当于旧的 XMP 标签。新的 PRE 标签将解析代码。