vote up 1 vote down star
1

I am storing a number of HTML blocks inside a CMS for reasons of easier maintenance. They are represented by TEXTAREAs.

Does anybody know a JavaScript Widget of some sort that can do syntax highlighting for HTML within a Textarea or similar, while still staying a plain text editor (no WYSIWYG or advanced functions)?

flag

75% accept rate
1  
Duplicate : stackoverflow.com/questions/1505761/… – Fabien Ménager Oct 24 at 21:29

3 Answers

vote up 3 vote down check

It's not possible to achieve the required level of control over presentation in a regular textarea.

If you're OK with that, see CodeMirror or maybe even bespin

From the duplicate thread - an obligatory wikipedia link: http://en.wikipedia.org/wiki/Comparison_of_JavaScript-based_source_code_editors

link|flag
Actually, Bespin uses a regular textarea fallback for adding support for screen readers (so disabled people can easily use it too). – Elijah Grey Oct 24 at 21:44
CodeMirror looks exactly like what I need. As long as it behaves like a textarea, I am comfortable with it not being one. – Pekka Gaiser Oct 24 at 21:47
Oh and I forgot, thank you! – Pekka Gaiser Oct 24 at 21:47
vote up 0 vote down

Why are you representing them as textareas? This is my favorite:

http://alexgorbatchev.com/wiki/SyntaxHighlighter

But if you are using a CMS, there's probably a better plugin. For example, wordpress has an evolved version:

http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/

link|flag
These plugins do not allow on-the-fly syntax highlighting like in a textarea – Fabien Ménager Oct 24 at 21:31
vote up 0 vote down

The only editor I know of that has syntax highlighting and a fallback to a textarea is Mozilla Bespin. Google around for embedding Bespin to see how to embed the editor. The only site I know of that uses this right now is the very alpha Mozilla Jetpack Gallery (in the submit a Jetpack page) and you may want to see how they include it.

There's also a blog post on embedding and reusing the Bespin editor that may help you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.