代码美化器和格式化器

发布于 2025-01-02 13:28:31 字数 464 浏览 0 评论 0原文

我只是想知道“stackoverflow”如何美化提交的代码。
网上搜了一下,也找到了美化代码的方法。
但主要问题是:当我放置问题描述和代码片段时。 此时,我们如何仅突出显示代码片段,而不突出显示问题的描述。

我使用了链接中的一些CSS,但没有找到答案。

http://lifehacker.biz/articles/web-developers- package-code-beautifier-and-formatter/

更新- 在我的问题中,整个问题(描述+代码片段)存在于数据库的列中。它来自一个 Struts2 标签,那么我如何区分代码片段部分和描述部分以应用代码美化器。

I was just wondering how "stackoverflow" beautify submitted code.
I searched the web and also found the way to beautify the code.
But main problem is: When I put description of my problem and code-snippet.
At that point how we Highlight the code-snippet only but not the description of the problem.

I use some of the CSS from the link but did not find the answer.

http://lifehacker.biz/articles/web-developers-package-code-beautifier-and-formatter/

UPDATED-
In my problem whole question(description + code-snippet) is present in a column of the database. It comes by a Struts2 tag , So at that point how I distinguish the code-snippet part and the description part to apply the the code beautifier.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自找没趣 2025-01-09 13:28:31

堆栈溢出是如何发生的:你必须将文本缩进 4 个空格。

您可以使用 ; HTML 中的标签指定哪一部分是代码并仅运行插件

 $('code').beautifier()

,或者美化器是您正在使用的任何插件

尝试 chili 例如: http ://noteslog.com/chili/

基本上使用代码标签来指定什么是代码以及什么是注释。辣椒很容易做到这一点。

how stack overflow does it is: you have to indent the text by 4 spaces.

You could use <code> tag in HTML to specify which part is code and run the plugin only

 $('code').beautifier()

or beautifier is whatever plugin you are using

Try chilli for example: http://noteslog.com/chili/

Basically use code tags to specify what is code and what's note. Chilli does it pretty easily.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文