Looking for customizable syntax highlighting in the browser - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T18:12:54Zhttp://stackoverflow.com/feeds/question/814949http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/814949/looking-for-customizable-syntax-highlighting-in-the-browser1Looking for customizable syntax highlighting in the browserwmeyer2009-05-02T14:40:22Z2009-05-02T14:43:17Z
<p>I'm looking for a customizable JavaScript script which dynamically highlights code in a block like</p>
<p><code class="someclass">source code...</code></p>
<p>It needs to be customizable because the source code is in a quite esoteric programming language (Mozart/Oz). Ideally, I'd just edit some regexes to make it work.</p>
<p>I need dynamic highlighting because it should work in the github wiki which escapes all HTML code within a pre tag.</p>
<p>My Google fu has forsaken me so far...</p>
http://stackoverflow.com/questions/814949/looking-for-customizable-syntax-highlighting-in-the-browser/814955#8149551Answer by David Brown for Looking for customizable syntax highlighting in the browserDavid Brown2009-05-02T14:43:17Z2009-05-02T14:43:17Z<p><a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">SyntaxHighlighter</a> might be what you're looking for. It supports custom languages, as well.</p>