What Javascript libraries can you recommend for syntax highlighting <code> blocks in HTML?

(One suggestion per answer please).

link|improve this question

67% accept rate
feedback

12 Answers

up vote 45 down vote accepted

StackOverflow uses Prettify.

link|improve this answer
I second this. Google Code uses it for their own repo highlighting (since they wrote it) and automatically detects the language. – Karan Oct 2 '08 at 4:14
Surely using one which "automatically" detects the language simply puts more weight on the client's machine/browser... – 999 Oct 2 '08 at 8:42
1  
You can give the language to Prettify if you know it, it will improve the performance. This is just not used in StackOverflow due to the large language audience. – Vincent Robert Oct 2 '08 at 8:54
Just added this to my web site, and it's great and so simple to use! – Software Monk Feb 22 '09 at 5:53
Very simple! I'm a fan from now on. – Kiewic Aug 10 '09 at 3:07
show 3 more comments
feedback

SyntaxHighlighter is available as a GitHub project.

link|improve this answer
feedback

jQuery Syntax Highlighter is a new one based on Google's Prettify - a really really really popular plain javascript syntax highlighter.

It supports such things as code and pre blocks, able to use classnames like language-javascript to indicate we want it to highlight, as well as wordwrap. You can copy and paste code by selecting it normally instead of having to open a raw view like many others. It can be further customised by using the HTML5 data attribute data-sh or via specifying options at initialisation. A great stable choice which is updated regularly.

link|improve this answer
The author actually says it's based on Google's Prettify, not SyntaxHighlighter. Looks just like SyntaxHighlighter 3, though, but seems to require a lot less work to set up. Thanks for the link! – Tieson T. Mar 29 '11 at 18:39
feedback

If you're using jQuery there's Chilli:

http://code.google.com/p/jquery-chili-js/

All you have to do is include the jquery-chili.js and recipes.js, and do the highlight with

$("code").chili();

It should figure out the language by itself.

link|improve this answer
feedback

I'm not being argumenative but just thought it worth mentioning that if you're using a CMS or blog platform then using a backend highlighter is better for obvious reasons - Have a look at Geshi(http://qbnz.com/highlighter/) if you're interested. Actualy you could setup your server to parse HTML content through a backend technology - so there is not need for the JS highlighters at all. (The only functionality they add is the ability to print/copy[using swf])..

link|improve this answer
feedback

jQuery.Syntax is an extremely fast and lightweight syntax highlighter. It has dynamic loading of syntax source files and integrates cleanly using CSS or modelines.

It was developed specifically to fill a gap - that is: a fast, clean, client-side syntax parser.

link|improve this answer
unfortunately it thought a standard FpML message to be SPAM :) – ehosca Sep 8 '11 at 19:21
@ehosca, are you able to give me some clarification on problem you are having? – Mr Samuel Sep 13 '11 at 1:40
when i paste the xml in goo.gl/PPcDx to goo.gl/qSqm9 it says Invalid content, appears to be spam. hope this helps. – ehosca Sep 14 '11 at 13:28
You need to include some line breaks in the text, otherwise it looks like link spam. I can't remember the exact formulae I used, but I think if you have more than one URL per line the text is considered spam - this is because heaps of bots were spamming the system (syntax-highlighing.com). – Mr Samuel Sep 15 '11 at 4:41
feedback

How about:

syntaxhighlighter

highlight.js

JSHighlighter

link|improve this answer
8  
A simply Google search would also give me that list--but which one you prefer and why? – Török Gábor Aug 14 '09 at 13:45
feedback

I'm very happy with SHJS. It supports a bevy of languages and seems pretty fast and accurate.

Here's an example where I use it on my blog. I'm using my own custom CSS file that simulates Coda's syntax highlighting. Email me if you'd like to use it.

link|improve this answer
feedback

This article at the Web Resources Depot lists a bunch of options for highlighting code, some of which use Javascript. It was published on 4th May 2009.

link|improve this answer
feedback

SyntaxHighlighter

link|improve this answer
feedback

If you are looking for syntax highlighting in an in-browser editor, try CodeMirror.

link|improve this answer
feedback

I recently developed one called rainbow.

The main design goal was to make the core library really small and make it really easy for developers to extend.

See http://rainbowco.de.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.