在我的博客文章中突出显示源代码
我在我的博客上写文章,我需要用特殊颜色突出显示源代码(java、php 或其他),就像在 stackoverflow
中使用
标签一样;您能告诉我应该在博客中使用什么选项来执行此操作吗?您可以查看我的博客来了解我的意思。提前致谢。
I write articles on my blog and I need to highlight the source code(java, php or whatever) with special colors like here in stackoverflow
with the <pre>
tag; could you tell me what option should i use in my blog to do so? You can take a look on my blog to see what I mean. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用 IntelliJ,您可以导出为 HTML,这非常好并且适合我。
If you use IntellIJ you can export as HTML which is really nice and works for me.
StackOverflow 使用 Google Prettify
对于最基本的用法,只需装饰您的
pre
标签与PrettyPrint
类。StackOverflow uses Google Prettify
For the most basic usage, just decorate your
pre
tags with thePrettyPrint
class.您可以使用语法 Highliter 代码在博客文章中突出显示您的代码。为此,您需要在博客编辑Html页面中安装一些代码,您应该在博客模板中添加syntaxHighlither代码。
Afger 在您的博客中发布帖子,如果有任何 html 或 java 代码出现,那么您需要将其转换为转义代码。
此方法的主要问题是所有直尖括号必须进行 HTML 转义,例如所有
<
必须替换为<
这将确保正确呈现。在您的博客中配置 SyntaxHighlighter。
You can use the Syntax Highliter code to highlight your code in the blog posts. For this you need to install some code in blogger editHtml page you should add the syntaxHighlither code in blogger template.
Afger posting posts in your blog if any html or java code come then you need to convert it escaped code.
Major issue with this method is that all right angle brackets must be HTML escaped, eg all
<
must be replaced with<
This will ensure correct rendering.Configure SyntaxHighlighter in your blog.