Are there any JavaScript live syntax highlighters? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T09:13:26Zhttp://stackoverflow.com/feeds/question/61655http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters4Are there any JavaScript live syntax highlighters?VirtuosiMedia2008-09-14T21:11:34Z2009-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#616573Answer by Brian R. Bondy for Are there any JavaScript live syntax highlighters?Brian R. Bondy2008-09-14T21:13:28Z2008-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#616642Answer by Frank Krueger for Are there any JavaScript live syntax highlighters?Frank Krueger2008-09-14T21:29:48Z2008-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#616740Answer by Eric for Are there any JavaScript live syntax highlighters?Eric2008-09-14T21:53:42Z2008-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#624110Answer by Vitaly Sharovatov for Are there any JavaScript live syntax highlighters?Vitaly Sharovatov2008-09-15T12:40:22Z2008-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#624620Answer by Lucas Oman for Are there any JavaScript live syntax highlighters?Lucas Oman2008-09-15T12:46:16Z2008-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#629303Answer by Will Moffat for Are there any JavaScript live syntax highlighters?Will Moffat2008-09-15T13:36:43Z2008-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>