jQuery RTF Editor
I have seen a lot of RTF editors out there, but I can't seem to find one t开发者_运维问答hat will let me preload RTF data and display it properly and then spit RTF data back out to me. Does anyone know of any good ones?
For example, if I had this:
<textarea id="rtf">
{\rtf1\ansi{\fonttbl\f0\fswiss Helvetica;}\f0\pard
This is some {\b bold} text.\par
}
</textarea>
I am looking for a jQuery plugin that will display:
This is some bold text.
In an editable textarea and then give me back whatever changes they made in RTF, NOT HTML.
CuteEditor.NET seems to have this ability, although:
- It requires an ASP.NET server-side process; and
- My quick test determined that the formatting of the resulting RTF file doesn't match that displayed in the web GUI.
- It's not a JQuery plugin.
- It's commercial.
精彩评论