For questions about the syntax highlighting performed inside code blocks on Stack Exchange sites.
58
votes
23answers
8k views
Changes to syntax highlighting
locked for the history - please post bugs and feature-requests separately.
-Shog9
We're changing the way syntax highlighting is done on the Stack Exchange engine.
As you probably know, we ...
3
votes
2answers
137 views
Code formatting does not work for JavaScript
I think it used to work in the past but now code highlight has no effect on JavaScript whatsover.
jQuery example:
$(document).keypress(function (event) {
var key = ...
2
votes
1answer
86 views
Syntax highlighter is jumpy lately
After entering some code in an answer and the timer expires, the syntax highlighter kicks in and inserts an extra line above the code. Typing some more makes the line disappear. This makes the code ...
10
votes
0answers
173 views
Style XML element in code block messes up syntax highlighting coloring
If you put some XML in a code block (by indenting by 4 spaces) and one of the tags is <Style> it will mess up the syntax highlighting of the generated result.
This works:
<Style2 ...
1
vote
2answers
77 views
Would syntax highlighting compatible with other languages than C# be worthy?
Over the current year, I have written more code in VB.NET than C#. Hence, my code samples were obviously Visual Basic.
I have noticed some bad syntax highlight with this language, particularly when ...
2
votes
1answer
37 views
Syntax highlighter doesn't handle unpaired backticks
If you have an unpaired backtick
file = $`
raise unless file == "my_file.rb"
You get the next line treated as a comment string.
It seems to be a pairing problem, based on
file = $`
raise unless ...
0
votes
0answers
39 views
Comment bug in syntax highlighting?
In a recent SO question, the following code appeared:
# define v putchar
# define print(x) main(){v(4+v(v(52)-4));return 0;}/*
#>+++++++4+[>++++++<-]> ++++.----.++++.*/
...
4
votes
1answer
66 views
Code highlighting improvement suggestion [duplicate]
Possible Duplicate:
Allow highlighting certain bits of a code fragment or quote
Sometimes I need to paste a large lump of code, as in context it is all relevant, but I would like people to ...
4
votes
2answers
974 views
Haskell comment syntax not being highlighted
Here is a sample Haskell code block:
-- This is a comment <- notice how this is syntax highlighted as though it were code
{- This is also a Haskell comment -}
// This isn't even a comment in ...
0
votes
0answers
38 views
Syntax highlighter doesn't handle quotation marks in regular expressions
A quotation mark in a regular expression plus a =~ breaks the syntax highlighter.
tony_the_pony = /"/
puts :ok_so_far
if xhtml_text =~ /"/
summon_cthulu
end
3
votes
1answer
188 views
Prettify syntax highlighter doesn't run in tag wiki pages (did run in edit page however)
The prettify syntax highlighter doesn't run in tag wiki pages (does run in edit preview page however). For example JSP and Servlets.
Update: I just encountered exactly the same problem again. For ...
2
votes
1answer
88 views
Add extra commands to the syntax highlighting e.g. DATEPART, month, CASE
I was playing with the Data Explorer, and was doing a simple query to see how many posts appeared by month. This was my query:
select datepart(year, p.creationdate) as year,
datepart(month, ...
6
votes
1answer
141 views
LaTeX-specific syntax highlighting for Stack Exchange sites? [closed]
Yes, I saw this question about adding LaTeX syntax highlighting to the general purpose system on Stack Overflow proper. However, there are now at least three sites (MathOverflow, Mathematics, and ...
11
votes
1answer
375 views
Syntax highlighting for chat?
I noticed that syntax highlighting isn't enabled for chat.meta.stackoverflow.com.
Here is a good example: http://chat.meta.stackoverflow.com/chats/message/5365
1
vote
0answers
124 views
Is it possible to explicitly tell Stack Overflow the language of the code block you are including? [duplicate]
Possible Duplicates:
stackoverflow syntax highlighting
Syntax highlighting hints
Stack Overflow awesomely detects what language a code block is and syntax highlights it accordingly. But ...
1
vote
1answer
195 views
Keyword 'let' from LINQ syntax is not supported by syntax highlighting
I found that neither on SO. nor here, on meta, LINQ syntax keyword let isn't being highlighted:
from f in db.Foo
let b = f.Bar
where b.Count == 1
select new FooBar(b);
Please add.
36
votes
3answers
372 views
Allow highlighting certain bits of a code fragment or quote
It would be nice to be able to put emphasis on specific bits of a fragment or of a quote (bold can help for a quote but I find that it makes things less readable sometimes).
What do you think?
...
0
votes
1answer
146 views
How to highlight the code
I have been read Javascript code prettifier, but I still didn't understand how to use prettify here on Stack Exchange sites... I can't copy highlighted text and I can reference the prettyfy function ...
3
votes
1answer
124 views
SEDE Sql Highlighter is borked for aliases with single quotes
I looked at Quassnoi's latest data-explorer query and saw the syntax highlighting got borked because of his column alias with an apostrophe.
@waffles: I have a patch for this (which the margin is ...
2
votes
3answers
131 views
Syntax Highlighting Freezes my Firefox
When I load a page with a fair amount of code or long code sections, my browser (see below) halts and the CPU spikes to 100% (For a little bit, doesn't actually crash the browser).
Is this just me? I ...
0
votes
2answers
65 views
Syntax highlighting broken after numbered list [duplicate]
Possible Duplicate:
Why is a code block not properly formatted when placed immediately after a list item?
The 4 space indent is not being recognized as a code block after a numbered list.
...
3
votes
2answers
145 views
Syntax Highlighting - Two Character Identifiers
I noticed a bug/feature with the syntax highlighting where two-character capitalized identifiers are not being highlighted inside code blocks. This does not appear to be a problem in the case of ...
3
votes
2answers
99 views
CMD `::` autoformats badly
From http://stackoverflow.com/questions/2609985/how-to-run-a-powershell-script-within-a-dos-batch-file/2611487#2611487
There's an idiom in CMD scripts to use :: as a comment delimiter. (: means a ...
1
vote
0answers
159 views
Allow declaration of programming language for syntax highlighting [duplicate]
Possible Duplicate:
Syntax highlighting hints
The parser for code blocks has some kind of heuristic (the "Prettify" library, IIUC) for guessing what programming language syntax to use for ...
12
votes
3answers
317 views
Allow `class` attribute for `<code>` tag [duplicate]
Possible Duplicate:
Syntax highlighting hints
As we all know, prettify.js, which is used by Stackoverflow for syntax highlighting, allows the specification of the intended language. ...
2
votes
2answers
335 views
SQL Syntax highlighter doesn't recognized double-dash comment syntax
-- this is a comment
UPDATE Employees SET fired = 1 WHERE noiseLevelInDB > 80
2
votes
2answers
222 views
What syntax highlighter does Stack Overflow use? [duplicate]
Possible Duplicate:
How does Stack Overflow syntax highlight citations so well?
What syntax highlighter does Stack Overflow use?
I was browsing Meta Stack Overflow and I couldn't ...
3
votes
2answers
84 views
Incorrect C# syntax highlighting with @“\”
The title really says it all, but when I use the @ character to ignore escapes in a string literal @"Like This\", the \" is interpreted as a quote character belonging to the string rather than the ...
0
votes
1answer
95 views
How can you put in a colorized code into the question? [duplicate]
Possible Duplicate:
How do I get my code blocks formatted?
Is there some script, or something else that is used within the Stack Overflow's editor to put in syntax highlighting for code ...
2
votes
1answer
149 views
Code is indented by 4 spaces but isn't interpreted as code [duplicate]
Possible Duplicate:
Why is a code block not properly formatted when placed immediately after a list item?
If you look at my post ( 3rd down ) on this stack overflow page, you'll see that my ...
2
votes
2answers
64 views
Code Block not showing up within a list [duplicate]
Possible Duplicates:
How do I include a code block right after a list without it turning into a blockquote?
How to nest code within a list using markdown
I edited this question, but even ...
4
votes
1answer
168 views
Syntax highlighter bugs on multiple <script> tags
To illustrate, multiple non-script tags works fine:
<element name="value"></element>
<element name="value"></element>
But multiple script tags bugs the highlighter, see the ...
1
vote
0answers
125 views
Support for multiple types of comment syntax in code blocks
You can comment a statement in T-SQL (for SQL Server) using --
StackOverflow does not show this as a comment.
--Comment goes here and code follows
INSERT INTO TABLE ....
The C# style comment ...
0
votes
1answer
161 views
Single whiteline gets doubled inside code block inside list [duplicate]
Possible Duplicate:
Bug in Markdown formatter
If you have a whiteline inside a code block, which is inside a list, it gets doubled. It doesn't matter whether you put eight spaces in that ...
1
vote
1answer
120 views
How does SO do its syntax highlighting for code? [duplicate]
Possible Duplicate:
How does SO syntax highlight citations so well?
The syntax highlighting on StackOverflow is excellent. How do they do it?
2
votes
2answers
132 views
Syntax highlighting has long delays for some VB code
Once again, the client-side code highlighter doesn’t work properly. This question stops my browser from responding completely, until after a few seconds I am asked whether I want to continue the ...
1
vote
2answers
435 views
How do I format this source code?
I can't get it to look right!
See my question.
Compare 1:
Compare 2:
Compare 3:
10
votes
1answer
241 views
Bug: code blocks after numbered or bulleted lists completely disappear
This and related bugs have repeatedly been reported here, here, here and here, which is four times in four months. And there are many many more of the same reports, unfortunately.
My issue? Almost ...
0
votes
0answers
67 views
Code coloring seems to have gone haywire [duplicate]
Possible Duplicate:
First letters of XML attributes not colored correctly if capitalized
I've been noticing today that the first character of each attribute name in markup code is black, and ...
1
vote
2answers
147 views
Syntax highlighting fails to highlight “abstract” correctly
I've just noticed that the syntax highlighting no longer highlights C# "abstract" keyword correctly:
http://stackoverflow.com/questions/1540070/is-this-an-abuse-of-the-type-system/1540083#1540083
...
3
votes
2answers
138 views
Syntax highlighting broken
Syntax highlighting seems to have been broken recently. For example see the code example at:
http://stackoverflow.com/questions/1423282/wpf-textblock-padding-is-cutting-off-text
All the attributes' ...
11
votes
4answers
138 views
Ability to highlight (mark) portions of code
Would like the ability to apply a highlighter (background yellow, red, etc..) to identify a specific section of code to draw attention to it. Note that this would be inside of the formatted code ...
2
votes
1answer
1k views
Source code syntax highlighting on stackoverflow wmd
I was wondering how stackoverflow (wmd) solves syntax highlighting on source code snippets.
I understand that if text is marked as code it gets that <pre> CODE </pre> tags and that the ...
-1
votes
1answer
144 views
The Javascript Syntax Highlighter Upsets Me
Give me the liberty to disable this problematic syntax highlighting script, please. It does more harm for me than good.
4
votes
3answers
131 views
Shouldn't the code formatter highlight the word “having” for SQL syntax?
In this SQL statement, notice the color of the word "having" versus the words "select", "from", "where", and "group by"
select
cu.name
,cu.email
,count(*) as books_purchased
from
customers cu
...
0
votes
2answers
258 views
Code highlighting with E4X XML literals in ActionScript code blocks
When entering XML literals using E4X syntax in ActionScript the code highlighting can be broken:
package
{
public class XMLTest
{
public function XMLTest()
{
// here highlighting ...
4
votes
3answers
1k views
How does Stack Overflow syntax highlight citations so well?
I posted a citation in an answer to a question, reproduced here:
H. Muhammad and R. Ierusalimschy. C APIs in extension
and extensible languages. Journal of Universal Computer
Science, 13(6):839–853, ...
3
votes
2answers
202 views
Syntax highlighting is inconsistent
In this question, why is ElementByElement highlighted as a method, but ElementByElement2 isn't?
EDIT: To submit a new issue to Prettify, I'd like to know what version Stack Overflow uses. ...
-3
votes
4answers
47 views
Automatically link to relevant documentation when entering code and the question is tagged with a language name
This is an idea for the code highlighter. For questions/comments tagged with a single language, how about giving us some context sensitive documentation?
Known language constructs (e.g. Classes in ...
4
votes
2answers
6k views
stackoverflow syntax highlighting [duplicate]
Possible Duplicate:
Syntax highlighting hints
When using SO's code blocks, can you control how syntax highlighting is performed? Many times, I've pasted (for example) some shell output into ...

