show/hide this revision's text 2 added 122 characters in body

Here is a really interesting article about how to write one: (Even better, he gives the full source to a JavaScript formatter and colorizer.)

Implementing a syntax-higlighting JavaScript editor in JavaScript or A brutal odyssey to the dark side of the DOM tree

The plan was not ridiculously ambitious

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 'enhance' a textarea actually be able to the point where writing code in it is pleasant. This meant automatic indentation andrecognize regular expressions, if possible at allso that I didn't have any blatant incorrect behaviour anymore.

Importantly, syntax highlightingit handles regex correctly.

What's interesting Also of interest is that he used a continuation passing style lexer/parser instead of the more typical Flex lex (or regex) based lexers that you'll see in the wild.

As a bonus he discusses a lot of real-world issues you'll run into when working with JavaScript in the browser.

show/hide this revision's text 1

Here is a really interesting article about how to write one: (Even better, he gives the full source to a JavaScript formatter and colorizer.)

Implementing a syntax-higlighting JavaScript editor in JavaScript or A brutal odyssey to the dark side of the DOM tree

The plan was not ridiculously ambitious. I wanted to 'enhance' a textarea to the point where writing code in it is pleasant. This meant automatic indentation and, if possible at all, syntax highlighting.

What's interesting is that he used a continuation passing style lexer/parser instead of the more typical Flex (or regex) based lexers that you'll see in the wild.

As a bonus he discusses a lot of real-world issues you'll run into when working with JavaScript in the browser.