Name Date Size

.. 2012-03-30 18:48:20 100

build.base.properties 2012-01-09 16:36:43 558

build.base.xml 2010-04-20 05:23:17 286

build.bidi.properties 2011-06-10 20:34:13 520

build.bidi.xml 2010-07-28 23:19:13 286

build.br.properties 2011-06-10 20:34:13 516

build.br.xml 2010-11-02 21:48:39 284

build.exec.properties 2011-06-10 20:34:13 516

build.exec.xml 2010-04-20 05:23:17 286

build.frame.properties 2011-06-10 20:34:13 548

build.frame.xml 2010-04-20 05:23:17 287

build.link-base.properties 2011-06-10 20:34:13 528

build.link-base.xml 2010-04-20 05:23:17 291

build.lists.properties 2011-06-10 20:34:13 515

build.lists.xml 2010-04-20 05:23:17 287

build.para-base.properties 2012-02-23 23:26:07 530

build.para-base.xml 2012-02-23 23:26:07 291

build.para-ie.properties 2012-02-23 23:26:07 531

build.para-ie.xml 2012-02-23 23:26:07 289

build.para.properties 2011-06-10 20:34:13 520

build.para.xml 2010-08-31 07:34:38 286

build.selection.properties 2012-01-09 16:36:43 523

build.selection.xml 2010-04-20 05:23:17 291

build.tab.properties 2011-06-10 20:34:13 518

build.tab.xml 2010-04-20 05:23:17 285

build.xml 2012-02-23 23:26:07 1.3 KiB

docs 2012-01-09 16:39:30 9

HISTORY.md 2012-01-31 00:00:14 1.4 KiB

js 2012-03-02 16:49:57 14

Makefile 2011-08-27 00:07:18 47

meta 2012-02-23 23:26:07 3

README.md 2011-06-24 17:51:20 930

tests 2012-03-30 18:48:20 4

README.md

Rich Text Editor
================
The Rich Text Editor is a UI control that allows for the rich formatting
of text content, including common structural treatments like lists,
formatting treatments like bold and italic text.
The current release of the Rich Text Editor for YUI 3 is the base utility
layers that provide a foundation on which you can create an Editor.
**This version of Editor does not contain a GUI of any kind.**
YUI().use('editor-base', function(Y) {
var editor = new Y.EditorBase({
content: '<strong>This is <em>a test</em></strong> <strong>This is <em>a test</em></strong> '
});
//Add the BiDi plugin
editor.plug(Y.Plugin.EditorBidi);
//Focusing the Editor when the frame is ready..
editor.on('frame:ready', function() {
this.focus();
});
//Rendering the Editor.
editor.render('#editor');
});