我在<code>标签内部使用标签<pre>在我的博客博客上显示代码.不幸的是,它不适用于HTML标记.有没有办法显示" <div>"内部<pre>或<code>标签而不实际将其解释为HTML?这就是我现在所做的:
<pre>
<code>
.class {
color:red;
}
// I would like HTML code inside this
</code>
</pre>
Run Code Online (Sandbox Code Playgroud)
哪个适用于HTML以外的所有内容.知道怎么做到这一点?谢谢.