我怎样才能通过“ctrl”获得相同的效果k”在 stackoverflow 问题中,在我的 html 代码中?
通过在此处编写一些代码,我们可以选择该代码&按 ctrl + K,该代码现在以不同的格式打印。
printf("这是代码");
现在看我复制了上面的句子代码&以 ctrl+k 模式将其粘贴到下面,
printf("this is code");
好吧,现在我想知道如何在我的 WordPress 博客的帖子中获得相同的效果?
任何插件或任何技术或任何 html 标签?
see by writting some code here we select that code & press ctrl + K and that code now prints in something different format.
printf("this is code");
see now i copy uper sentences code & paste it below in ctrl+ k mode
printf("this is code");
okey so now i want to know how can i get same effect in my wordpress-blog's post?
any plugin or any technique or any html tag ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来您正在寻找一个可以处理源代码语法突出显示的 WP 插件。以下是一些可能适合您的示例:
http://wordpress.org/extend/ plugins/wp-syntax/screenshots/
http://wordpress.org/extend/plugins/google-syntax-highlighter/screenshots/
It looks like you are looking for a WP plugin which can handle source code syntax highlighting. Here are some examples which may work for you:
http://wordpress.org/extend/plugins/wp-syntax/screenshots/
http://wordpress.org/extend/plugins/google-syntax-highlighter/screenshots/
您需要一个代码荧光笔。对于 WordPress,Geshi 支持的荧光笔非常常见。 http://wordpress.org/extend/plugins/tags/geshi
You'll want a code highlighter. For WordPress, Geshi-backed highlighters are pretty common. http://wordpress.org/extend/plugins/tags/geshi
您将寻找
You'll be looking for the <pre> tag.