Free Syntax Highlighting editor control in JavaScript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:15:02Z http://stackoverflow.com/feeds/question/379185 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript 4 Free Syntax Highlighting editor control in JavaScript Alexander Gladysh 2008-12-18T20:42:59Z 2009-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#379199 1 Answer by Jimmy for Free Syntax Highlighting editor control in JavaScript Jimmy 2008-12-18T20:44:35Z 2008-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#379204 6 Answer by Diadistis for Free Syntax Highlighting editor control in JavaScript Diadistis 2008-12-18T20:46:31Z 2009-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#379313 1 Answer by EndangeredMassa for Free Syntax Highlighting editor control in JavaScript EndangeredMassa 2008-12-18T21:18:12Z 2008-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#379337 1 Answer by John D. Cook for Free Syntax Highlighting editor control in JavaScript John D. Cook 2008-12-18T21:23:34Z 2008-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&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fcode.google.com%2Fp%2Fgoogle-code-prettify%2F&amp;ei=xU5BSfqWAoy4Mt-_zc0G&amp;usg=AFQjCNHEkFy5p5nHSXyB05Ajm57qDONgUw&amp;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#634717 4 Answer by Rahul for Free Syntax Highlighting editor control in JavaScript Rahul 2009-03-11T14:22:53Z 2009-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#711139 1 Answer by Thomas for Free Syntax Highlighting editor control in JavaScript Thomas 2009-04-02T19:01:18Z 2009-04-02T19:01:18Z <p>+10 for CodeMirror</p> <p>@Rahul: It is relativly easy to write your own parser for CM</p>