Complete YUI newbie here.
I need to dynamically color text background as user types the text in the YUI3 text editor control, as follows:
- First line of the text is orange.
- All lines until the line that starts with
--are orange. - All lines after that, including that with
--, until the next one, starting with--are blue. - After that — orange again and so on.
If the first line starts with --, it should be orange nevertheless.
User must not have any manual control on the visual text styles whatsoever, on paste plain text must be inserted and re-colored.
Text background color must be updated in "real" time as user types the text.
Example:
orange orange orange orange -- blue blue blue -- blue -- orange -- blue -- orange orange orange
Please point me where to start digging on how to implement this. I browsed the examples, but can't quite grok the stuff yet.
Note: if you know a better suited editor for what I need, for any sane JS framework, please advise.