Are there any JavaScript live syntax highlighters? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:13:26Z http://stackoverflow.com/feeds/question/61655 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters 4 Are there any JavaScript live syntax highlighters? VirtuosiMedia 2008-09-14T21:11:34Z 2009-07-04T02:11:35Z <p>I've found syntax highlighters that highlight pre-existing code, but I'd like to do it as you type with a WYSIWYG-style editor. I don't need auto-completed functions, just the highlighting.</p> <p>As a follow-up question, what is the WYSIWYG editor that stackoverflow uses?</p> <p>Edit: Thanks to the answer below, I found two that look like they might suit my needs: <a href="http://www.cdolivet.net/editarea/" rel="nofollow">EditArea</a> and <a href="http://codepress.sourceforge.net/" rel="nofollow">CodePress</a></p> <p>EDIT: See this question also:<br /> <a href="http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript">http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript</a></p> http://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters/61657#61657 3 Answer by Brian R. Bondy for Are there any JavaScript live syntax highlighters? Brian R. Bondy 2008-09-14T21:13:28Z 2008-09-14T21:13:28Z <p>See <a href="http://code.google.com/p/google-code-prettify/" rel="nofollow">Google code pretify</a>.</p> <p>See this question for the <a href="http://beta.stackoverflow.com/questions/51808/edit-control-on-stack-overflow" rel="nofollow">edit control that stackoverflow</a> uses.</p> http://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters/61664#61664 2 Answer by Frank Krueger for Are there any JavaScript live syntax highlighters? Frank Krueger 2008-09-14T21:29:48Z 2008-09-14T21:35:47Z <p>Here is a really interesting article about how to write one: (Even better, he gives the full source to a JavaScript formatter and colorizer.)</p> <p><a href="http://marijn.haverbeke.nl/codemirror/story.html" rel="nofollow">Implementing a syntax-higlighting JavaScript editor in JavaScript</a> or A brutal odyssey to the dark side of the DOM tree</p> <blockquote> <p>How does one do decent syntax highlighting? A very simple scanning can tell the difference between strings, comments, keywords, and other code. But this time I wanted to actually be able to recognize regular expressions, so that I didn't have any blatant incorrect behaviour anymore.</p> </blockquote> <p>Importantly, it handles regex correctly. Also of interest is that he used a continuation passing style lexer/parser instead of the more typical lex (or regex) based lexers that you'll see in the wild.</p> <p>As a bonus he discusses a lot of real-world issues you'll run into when working with JavaScript in the browser.</p> http://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters/61674#61674 0 Answer by Eric for Are there any JavaScript live syntax highlighters? Eric 2008-09-14T21:53:42Z 2008-09-14T21:53:42Z <p>I dont program a lot of javascript but JSEclipse has been pretty helpful for me in the past. It comes as an Eclipse plug-in.</p> <p>I've been using it for years for free</p> <p><a href="http://www.interaktonline.com/products/eclipse/jseclipse/overview/" rel="nofollow">http://www.interaktonline.com/products/eclipse/jseclipse/overview/</a></p> <p>I also rely heavily on FireBug for Firefox whenever I deal with Javascript</p> http://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters/62411#62411 0 Answer by Vitaly Sharovatov for Are there any JavaScript live syntax highlighters? Vitaly Sharovatov 2008-09-15T12:40:22Z 2008-09-15T12:40:22Z <p>You can also try <a href="http://softwaremaniacs.org/soft/highlight/en/" rel="nofollow">http://softwaremaniacs.org/soft/highlight/en/</a> - it's fast, it supports not only javascript but many other languages. And if you need a live preview of how the highlighting will work, you can use setInterval to run the highlighting and show it in a separate box.</p> http://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters/62462#62462 0 Answer by Lucas Oman for Are there any JavaScript live syntax highlighters? Lucas Oman 2008-09-15T12:46:16Z 2008-09-15T12:46:16Z <p>Although it has a steep learning curve, <a href="http://www.vim.org" rel="nofollow" title="Vim">Vim</a> is the best editor out there, for any language. It has a GUI version, but really shines in terminal editing. Any time spent learning how to use this editor is not time wasted. It has syntax highlighting, as you're looking for, as well as thousands (literally) of other features and plugins.</p> http://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters/62930#62930 3 Answer by Will Moffat for Are there any JavaScript live syntax highlighters? Will Moffat 2008-09-15T13:36:43Z 2008-09-15T13:36:43Z <p>The question might be better stated as "What syntax-highlighting editor do you recommended to replace an html textarea in my web app?" (Some of the other answers here deal with desktop apps or pure-syntax highlighters, not client-side editors)</p> <p>I also recommend <a href="http://marijn.haverbeke.nl/codemirror/" rel="nofollow">CodeMirror</a>, it's written in Javascript and supports lots of browsers. It uses a real parser (rather than regexps) so it can deal with complex problems like correctly highlighting escaped strings. The developer is also very responsive on the <a href="http://groups.google.com/group/codemirror" rel="nofollow">discussion group</a>.</p>