Syntax highlighting code with Javascript - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T15:02:47Zhttp://stackoverflow.com/feeds/question/160694http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript15Syntax highlighting code with Javascriptmlambie2008-10-02T02:57:33Z2009-05-05T03:50:42Z
<p>What Javascript libraries can you recommend for syntax highlighting <code> blocks in HTML?</p>
<p>(One suggestion per answer please).</p>
http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/160699#1606998Answer by mlambie for Syntax highlighting code with Javascriptmlambie2008-10-02T02:58:53Z2008-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#1607021Answer by Franci Penov for Syntax highlighting code with JavascriptFranci Penov2008-10-02T02:59:43Z2008-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#1607072Answer by Chris Pietschmann for Syntax highlighting code with JavascriptChris Pietschmann2008-10-02T02:59:57Z2008-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#16073318Answer by AaronSieb for Syntax highlighting code with JavascriptAaronSieb2008-10-02T03:08:59Z2008-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#1607683Answer by Edu Felipe for Syntax highlighting code with JavascriptEdu Felipe2008-10-02T03:23:44Z2008-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#1608291Answer by Andrew Hedges for Syntax highlighting code with JavascriptAndrew Hedges2008-10-02T03:52:21Z2008-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#1613762Answer by J-P for Syntax highlighting code with JavascriptJ-P2008-10-02T08:39:51Z2008-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#8232561Answer by mlambie for Syntax highlighting code with Javascriptmlambie2009-05-05T03:50:42Z2009-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>