vote up 15 vote down star
5

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

(One suggestion per answer please).

flag

50% accept rate

8 Answers

vote up 18 vote down check

StackOverflow uses Prettify.

link|flag
I second this. Google Code uses it for their own repo highlighting (since they wrote it) and automatically detects the language. – Karan Bhangui Oct 2 '08 at 4:14
Surely using one which "automatically" detects the language simply puts more weight on the client's machine/browser... – J-P Oct 2 '08 at 8:42
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 Monkey Feb 22 at 5:53
Very simple! I'm a fan from now on. – Kiewic Aug 10 at 3:07
vote up 8 vote down

SyntaxHighlighter is available as a Google Code project.

link|flag
vote up 3 vote down

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|flag
vote up 2 vote down

How about:

syntaxhighlighter

highlight.js

JSHighlighter

link|flag
A simply Google search would also give me that list--but which one you prefer and why? – Török Gábor Aug 14 at 13:45
vote up 2 vote down

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|flag
vote up 1 vote down

SyntaxHighlighter

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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