Syntax highlighting code with Javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T08:22:41Z http://stackoverflow.com/feeds/question/160694 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript 15 Syntax highlighting code with Javascript mlambie 2008-10-02T02:57:33Z 2009-05-05T03:50:42Z <p>What Javascript libraries can you recommend for syntax highlighting &lt;code&gt; blocks in HTML?</p> <p>(One suggestion per answer please).</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/160699#160699 8 Answer by mlambie for Syntax highlighting code with Javascript mlambie 2008-10-02T02:58:53Z 2008-10-02T02:58:53Z <p><a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">SyntaxHighlighter</a> is available as a Google Code project.</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/160702#160702 1 Answer by Franci Penov for Syntax highlighting code with Javascript Franci Penov 2008-10-02T02:59:43Z 2008-10-02T02:59:43Z <p><a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">SyntaxHighlighter</a></p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/160707#160707 2 Answer by Chris Pietschmann for Syntax highlighting code with Javascript Chris Pietschmann 2008-10-02T02:59:57Z 2008-10-02T02:59:57Z <p>How about:</p> <p><a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">syntaxhighlighter</a></p> <p><a href="http://softwaremaniacs.org/soft/highlight/en/" rel="nofollow">highlight.js</a></p> <p><a href="http://www.devpro.it/jshighlighter/" rel="nofollow">JSHighlighter</a></p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/160733#160733 18 Answer by AaronSieb for Syntax highlighting code with Javascript AaronSieb 2008-10-02T03:08:59Z 2008-10-02T03:08:59Z <p>StackOverflow uses <a href="http://code.google.com/p/google-code-prettify/" rel="nofollow">Prettify</a>.</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/160768#160768 3 Answer by Edu Felipe for Syntax highlighting code with Javascript Edu Felipe 2008-10-02T03:23:44Z 2008-10-02T03:23:44Z <p>If you're using jQuery there's Chilli:</p> <p><a href="http://code.google.com/p/jquery-chili-js/" rel="nofollow">http://code.google.com/p/jquery-chili-js/</a></p> <p>All you have to do is include the jquery-chili.js and recipes.js, and do the highlight with </p> <pre><code>$("code").chili(); </code></pre> <p>It should figure out the language by itself.</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/160829#160829 1 Answer by Andrew Hedges for Syntax highlighting code with Javascript Andrew Hedges 2008-10-02T03:52:21Z 2008-10-02T03:52:21Z <p>I'm very happy with <strong><a href="http://shjs.sourceforge.net/" rel="nofollow">SHJS</a></strong>. It supports a bevy of languages and seems pretty fast and accurate.</p> <p>Here's an example where I use it on <strong><a href="http://andrew.hedges.name/blog/2008/05/13/widget-javascript-the-un-series-part-0" rel="nofollow">my blog</a></strong>. I'm using my own custom CSS file that simulates <strong><a href="http://panic.com/coda/" rel="nofollow">Coda's</a></strong> syntax highlighting. Email me if you'd like to use it.</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/161376#161376 2 Answer by J-P for Syntax highlighting code with Javascript J-P 2008-10-02T08:39:51Z 2008-10-02T08:39:51Z <p>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 <a href="http://qbnz.com/highlighter/" rel="nofollow">Geshi</a>(<a href="http://qbnz.com/highlighter/" rel="nofollow">http://qbnz.com/highlighter/</a>) 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])..</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/823256#823256 1 Answer by mlambie for Syntax highlighting code with Javascript mlambie 2009-05-05T03:50:42Z 2009-05-05T03:50:42Z <p><a href="http://www.webresourcesdepot.com/11-syntax-highlighters-to-beautify-code-presentation/" rel="nofollow">This article at the Web Resources Depot</a> lists a bunch of options for highlighting code, some of which use Javascript. It was published on 4th May 2009.</p>