如何防止在我的 中写入代码从渲染?
所以我使用谷歌代码美化器: http://code.google.com/p /google-code-prettify/
它的作用与堆栈溢出的作用类似,当您编写代码块时,它会美化代码并添加语法突出显示。
我遇到的问题是,如果我编写这样的代码,
<pre class="prettyprint">
<div class="specialForm">
...
</div>
</pre>
而不是像堆栈溢出那样渲染文本,它实际上会在页面上渲染 DIV,而且我不知道我做错了什么
So I am using the google code prettifier: http://code.google.com/p/google-code-prettify/
It does something similar to what stack overflow does here where when you write a block of code it beautifies it and adds syntax highlighting.
The problem I am haveing is if I write code like this
<pre class="prettyprint">
<div class="specialForm">
...
</div>
</pre>
instead of rendering the text just as stack overflow does, it actually renders the DIV on the page and I have no clue what I am doing wrong
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看 stackoverflow 中的源代码,您的帖子实际上是:
This Prevents the browser from treat them as html语法并打印文字
<
,>
等。If you look at the source here in stackoverflow, your post is actually:
This prevents the browser from treating them as html syntax and it prints literal
<
,>
etc.