Well the title of the question sums it up. Everything after the commented line is taken as a comment. You can see the bug here:

http://stackoverflow.com/questions/1595972/how-to-call-a-public-sub-function-of-a-window-from-another-window/1596465#1596465

share|improve this question
Damn you Google and your buggy perpetually-beta software!!11 – XMLbog Oct 20 '09 at 18:36
Deferred to duplicate request, sorry I don't have the link handy. – Joel Coehoorn Oct 20 '09 at 19:58
Damn why the down-vote if you can't even proof it's a duplicate. I wish I could down-vote your comment. – Carlo Oct 20 '09 at 21:33
2  
This is also a problem with Lisp-style languages, where ' is not paired. See eg. stackoverflow.com/questions/1579666/… – Greg Hewgill Oct 20 '09 at 21:34
This is fixed now. – Mechanical snail Nov 21 '12 at 8:39

3 Answers

It's not taking the ' character as a comment starter, but rather as the beginning of a string and it's expecting a second ' to close the string.

share|improve this answer
Prettify doesn't like VB, it will only recognize // comments (and maybe -- style sql comments) – TheTXI Oct 20 '09 at 19:16
And /* */ and # (which causes grief for those languages that use # for something else). – mmyers Oct 20 '09 at 19:19
3  
Yet another thing that doesn't like VB – Carlo Oct 20 '09 at 19:24

Submit an issue with Google prettify, since this functionality belongs to them.

share|improve this answer
I didn't no it was made by Google. Thanks. – Carlo Oct 20 '09 at 18:43
And knowing is half the battle. – TheTXI Oct 20 '09 at 19:22
lol that's good to know too – Carlo Oct 20 '09 at 19:23
The other half of the battle, apparently, is "noing". – user27414 Oct 20 '09 at 19:31
@TheTXI: Yeah, but what portion of the battle is "no"ing? – Hilarious Comedy Pesto Oct 20 '09 at 19:31
@John B: I hate you and your slightly quicker commenting! I hope you enjoy that 'h' I just shoved into your name, John. Consider that your punishment. – Hilarious Comedy Pesto Oct 20 '09 at 19:33

This is not the only thing that doesn't work with the current code highlighting.

According to prettify.js' documentation, it can take the intended language as an argument. This is also clearly needed for consistently producing the intended results. However, in spite of numerous nudges and complaints, this feature is still unavailable, mostly, I suspect, due to the inherent inflexibility of Markdown.

My advice would be to replace Markdown with something like BBcode and migrate the existing posts either by enclosing them in [markdown]...[/markdown] tags or by translating the current Markdown guesswork to the corresponding new markups.

Afterwards, it would be no problem to have a [code language="VB"] environment.

edit: Another possibility is to allow a lang attribute on <code> tags.

share|improve this answer
BB Code? You're serious. – George Stocker Oct 20 '09 at 20:22
1  
It shouldn't be too difficult to use the current tags as a contextual clue to determine how to prettify the document, surely? – Ether Oct 20 '09 at 20:22
George, I don't care whether it is BBcode or LaTeX or whatever, as long as it supports real markup. – Svante Oct 20 '09 at 20:35
Ether, which tags do you mean? How can you currently mark what language your code snippet is in? – Svante Oct 23 '09 at 8:37

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged