Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试将 Prettify 脚本集成到我的网站以提供 C# 代码块的智能语法高亮显示时遇到了一个小问题。在我介绍泛型之前,一切都很好,泛型包含在小于和大于字符中。Prettify 似乎完全剥离了这些并用单个换行符替换它们。
有人知道如何解决这种恼人的行为吗?
虽然我不知道 Prettify 脚本做了什么,但它听起来像 < 和 > 混淆了浏览器,因为这些字符用于生成 html 元素。
如果你想要在 html 中呈现为 < 和 > 的东西,你应该写 < 和> (lt = 小于,gt = 大于)
使用正确的html实体来显示<和>;
<和>
<
>