Free Syntax Highlighting editor control in JavaScript - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T11:15:02Zhttp://stackoverflow.com/feeds/question/379185http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript4Free Syntax Highlighting editor control in JavaScriptAlexander Gladysh2008-12-18T20:42:59Z2009-04-02T19:01:18Z
<p>I need to let user to edit some code in my web-app. I want to highlight the syntax as he types.</p>
<p>Note: I need code to be highlighted on the fly, right <strong>inside editor control</strong>. I do not need offline source highlighters.</p>
<p>Is there some free JavaScript-based code editor which does the job?</p>
<p>I'll need to highlight Lua syntax, but I can add it myself, if editor API is adequate.</p>
http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript/379199#3791991Answer by Jimmy for Free Syntax Highlighting editor control in JavaScriptJimmy2008-12-18T20:44:35Z2008-12-18T20:44:35Z<p>I've seen this one being used a lot lately (no LUA support though):</p>
<p><a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">http://code.google.com/p/syntaxhighlighter/</a></p>
http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript/379204#3792046Answer by Diadistis for Free Syntax Highlighting editor control in JavaScriptDiadistis2008-12-18T20:46:31Z2009-04-02T18:48:40Z<p>This one is quite good <a href="http://www.cdolivet.com/index.php?page=editArea" rel="nofollow">Edit Area</a></p>
http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript/379313#3793131Answer by EndangeredMassa for Free Syntax Highlighting editor control in JavaScriptEndangeredMassa2008-12-18T21:18:12Z2008-12-18T21:18:12Z<p><a href="http://code.google.com/p/google-code-prettify/" rel="nofollow">Prettify</a> works on several different languages.</p>
http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript/379337#3793371Answer by John D. Cook for Free Syntax Highlighting editor control in JavaScriptJohn D. Cook2008-12-18T21:23:34Z2008-12-18T21:23:34Z<p>I saw on <a href="http://www.hanselman.com/blog/BestCodeSyntaxHighlighterForSnippetsInYourBlog.aspx" rel="nofollow">Scott Hanselman's blog</a> that he recommends SyntaxHighlighter. The code samples on his site look very nice. But one of the comments says the script has bugs with scrolling. I've also heard good things about <a href="http://www.google.com/url?sa=t&source=web&ct=res&cd=1&url=http%3A%2F%2Fcode.google.com%2Fp%2Fgoogle-code-prettify%2F&ei=xU5BSfqWAoy4Mt-_zc0G&usg=AFQjCNHEkFy5p5nHSXyB05Ajm57qDONgUw&sig2=O-hzam8IKDpBYOoztyBfrQ" rel="nofollow">prettify</a>, but it may have bugs with formatting VBScript code.</p>
http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript/634717#6347174Answer by Rahul for Free Syntax Highlighting editor control in JavaScriptRahul2009-03-11T14:22:53Z2009-03-11T14:22:53Z<p>I just came across <a href="http://marijn.haverbeke.nl/codemirror/" rel="nofollow">CodeMirror</a>, which is apparently also in use by Google in their <a href="http://code.google.com/apis/ajax/playground/" rel="nofollow">AJAX APIs playground</a>, which serves as a good demo.</p>
<p>This one enriches a textarea (using an iframe) and is therefore editable, unlike Prettify and SyntaxHighlighter, which merely give syntax highlighting to a non-editable element. It also works in WebKit, which EditArea didn't when I tested it.</p>
<p>One downside, however: looks like the inbuilt language support is limited to clientside web development stuff, like Javascript, XHTML, CSS, etc, and not many server-side languages (correct me if I'm wrong).</p>
http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript/711139#7111391Answer by Thomas for Free Syntax Highlighting editor control in JavaScriptThomas2009-04-02T19:01:18Z2009-04-02T19:01:18Z<p>+10 for CodeMirror</p>
<p>@Rahul: It is relativly easy to write your own parser for CM</p>