RichTextEditorの出力するHTML

がどんなもんかわかるサンプルを作成しました。
http://hatena.souko105.net/20070507/RichTextEditorSample.html
文字を打つと、HTMLが表示されます。
ちなみにソースは

<?xml version="1.0" encoding="utf-8"?>
  <mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" 
    layout="vertical">
  <mx:RichTextEditor id="editor"/>
  <mx:Text text="{editor.htmlText}" width="600"/>
</mx:Application>

という感じの、AS3マンセーなコードです。