Tag Info

Hot answers tagged

107

This is now implemented. See: http://stackoverflow.com/editing-help#syntax-highlighting In addition to tag inference (a recent change), you can manually specify the language as a hint to Google Code Prettify. The spec is: <!-- language: lang-or-tag-here --> code goes here <!-- language: lang-or-tag-here --> code goes here You may ...


24

This is now implemented. In addition to tag inference (a recent change), you can manually specify the language as a hint to Google Code Prettify. The spec is: <!-- language: lang-or-tag-here --> code goes here <!-- language: lang-or-tag-here --> code goes here You may use either a tag or a prettify language code to specify, though ...


13

One potential change: when an answer is posted, remember the default language at the time. It would be really nasty to post an answer which was formatted appropriately, only to have someone remove a tag and turn the answer into badly-formatted (or even unformatted?) mush. EDIT: Of course, edits make this even more complicated... should an edit take on the ...


10

The language comment shouldn't be indented and you should put a blank line between the comment and the code <!-- language: lang-sql --> Select * from Foo where Foo.bar == "baz" This should yield Select * from Foo where Foo.bar == "baz" The highlight is pretty subtle though.


10

For your convenience, here's a quick and dirty userscript that changes the code comments color to green (only on Stack Overflow): Green Comments it does nothing more than simply adding this global style: code span.com { color: green; }


7

Meta never had code highlighting explicitly enabled, and in September we changed the default value of that setting from true to false, at which point syntax highlighting thus disappeared from Meta. Considering that it took four months for this to be noticed, it doesn't seem to have been a huge issue, but I agree that there are cases where it's helpful here, ...


7

The bug has been filed on the Prettify project: http://code.google.com/p/google-code-prettify/issues/detail?id=225 EDIT (Feb 2013): Fixed at the Prettify side.


6

OMG we must save the kittens! What to do, what to do??? I know! Edit! Oh, don't bother, already taken care of... On a (perhaps) more serious note: The time you spend writing this Meta question was more than enough to edit and fix both questions (and perhaps a couple more). And even post polite comments asking the OPs to be a bit more careful with ...


6

It's the difference between this: SuperFunction() System.DoesItWork and this: SuperFunction() System.DoesItWork The former is (or should be coloured) the latter isn't. BTW - I vacillate when it comes to this question. Sometimes I'm happy with the way it looks, but other times I wish is was coloured. I think it has to do with the actual words I'm ...


6

I think that the thing with inline code is that it is usually too short a snippet to need syntax highlighting. With long code snippets, this is often useful, since the snippets can be several lines long. However, with inline code, it is often for short keywords or short snippets that, as you say, are too small to be put in their own blockquote. Normally I ...


5

(Separate from my "general change" as they're different proposals.) [iphone] = default [c#-3.0] = default [android] = default [jquery] = default [hibernate] = default should be (IMO): [iphone] = lang-c // Assume Objective-C for the most part [c#-3.0] = lang-cs [android] = lang-java [jquery] = lang-js [hibernate] = lang-java (There may be more, but I ...


5

Is it possible to have "related tags" feature that when certain tag is set on question, the syntax highlight will take into account additional tags that are always related? For example, when jQuery tag is set, it's always good idea to also highlight "pure" JavaScript as well, so the highlighter should take into account both tags. Same with HTML, very often ...


5

This causes a potential problem with at least the WordPress Answers site, as explained in this meta question. Basically, because the whole WordPress Answers site is about WordPress, the [wordpress] tag is almost never used, and thus, prettify will rarely be invoked, unless a specific language tag is also used. However, because WordPress is written in PHP, ...


5

The right thing to do is: Submit a patch to the google-code-prettify project. One way to do this is to first edit the JavaScript live (e.g. in the Chrome Inspector), then open the relevant file under http://code.google.com/p/google-code-prettify/source/browse/trunk/src, click "Edit file", make the same change there, and submit it with an appropriate ...


5

Although prettify lists Go as one of the extensions to its existing set of syntax highlighting scheme, I'm not seeing it in the list of schemes for the go tag. I can only assume that lang-go is essentially being treated as lang-default when you add the hint to a post in that case. I've changed it so posts tagged go should now be syntax-highlighted.


5

Stack Exchange sites are using Google Code Prettify JavaScript module to have those nice colors, so that's actually a problem/bug with "their" code. Similar case has already been reported: Syntax highlighting for C doesn't properly recognize `restrict` as a keyword (Similar in the sense of problem with Prettify)


4

This is because the default highlighting for those tags is to auto-detect the language (presumably since posts in "webby" tags tend to contain code samples in several languages), and it doesn't always get it right. You can fix this by adding an explicit language annotation before the code block. <!-- language: lang-css --> .footA:hover { ...


4

[node.js] = lang-js See, for example, HTTP POST request in node.js, which is tagged node.js but not javascript and gets no highlighting.


4

[cl] = lang-lisp [el] = lang-lisp This seems wrong. If I look at question tagged with [cl] or [el], they have nothing to do with lisp. You probably meant [common-lisp] and [emacs-lisp]/[elisp] here (btw the latter two should be made synonyms, but that's a different issue). Additionally [scheme] and [clojure] should also be lang-lisp and [ml] should be ...


4

You cannot control how the syntax is highlighted. SO, uses Google's prettify to do the syntax coloring. Prettify uses common language patterns to determine syntax coloring. For example: Comments: // comment #comment Strings: 'This is a string' "So is this" Key words: void return int bool As Zifre says. You can turn off the syntax highlighting ...


4

There is a way to completely turn off code highlighting: use <code> tags (I often do this for OCaml/Lisp/Haskell code where unmatched 's cause problems). EDIT: As random pointed out, <pre> will work better than <code>. Normal highlighting: return 'a' "x" void With <pre> it looks like this: return 'a' "x" void Keep in mind that ...


3

I have a question about this statement: If a question has two tags that both define specific languages, it uses default and lets prettify infer as it always has. So does that means that, for instance, I have two tags that are linked to the same specific language, say [tagA] -> lang-a and [tagA-v3] -> lang-a, does it fulfill the above condition, ...


3

[sqlalchemy] = lang-py [webpy] = lang-py [cherrypy] = lang-py [py2exe] = default [beautifulsoup] = lang-py or default as it might have some HTML [numpy] = lang-py [wxpython] = default (it could be XML as well) [boo] = lang-py (it's not the same language, but it's close enough. Only thing, there are not too many questions.) [scriptaculous] = lang-js ...


3

Jeff, I wonder if it would be possible to have an unobtrusive display of the language which has been chosen? That would help get the tags right. I am concerned that people will choose the tags based on the language. As I have stated before, a question should not be tagged "C#" simply because that's the language being used.


3

Those tags needs default syntax highlighting, not null (also not xml nor java). They contain posts with a mix of Java code and XML-like markup. Both needs to be highlighted as nicely as it did before this change. jsf, jsf-2.0, jsp, servlets, servlet-filters, jstl and el.


3

I'm not sure .htaccess syntax highlighting is a very high demand form. However, the lang-bsh syntax highlighting looks pretty decent: <VirtualHost *:80> ServerName myapp-homintranet.myorg.com ServerAlias myapp-homintranet ProxyRequests Off ProxyPass /myapp balancer://jbosscluster/myapp stickysession=JSESSIONID nofailover=On ...


2

Well it appears the language inference has been pulling its weight thus far. There is however a minor issue here. I experimented with the question Webclient.UploadFile which is tagged tagged c#, .net, vb.net and webclient. When I tried answering the question with VB.NET code [which is perfectly valid based on the OP's tags] the code I entered was formatted ...


2

With the syntax highlighting language hints, you can now splendour your eyeballs on the colours of the keywords per whatever language tag is riding shotgun on the question. You can also override the default colouring inferred from the tags on the question with a prettify hint: <!-- language: lang-or-tag-here --> code goes here So an example ...


2

There is an inconsistency between the preview and the final result with respect to multiple language blocks. E.g: I specify a language <!-- language: lang-cs --> right in front of this code block: var test = ThisIsACSharpObject; Then I have some text, and then again a code-block: var test2 = ThisIsAnotherCSharpObject; In the preview (on Stack ...



Only top voted, non community-wiki answers of a minimum length are eligible