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.
我有一个 Visual Basic 代码,我想把它放到我的网站上,但是当我在 WYSIWYG 编辑器中通过它时,我的标识消失了......那么将代码标识转换为 HTML 的正确方法是什么?
您应该使用一些语法高亮库进行网页显示。有很多,仅举一个例子:
http://alexgorbatchev.com/SyntaxHighlighter/
快速而肮脏的方法是使用<pre>标签。您也可以应用于white-space: pre包含代码块的元素。这将保留您的空白(换行符、制表符、空格等)。
<pre>
white-space: pre
http://css-tricks.com/almanac/properties/w/whitespace/