<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The bane and choice of Rich Text Editors</title>
	<atom:link href="http://ajaxian.com/archives/richtexteditors-compared/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/richtexteditors-compared</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: domusvita</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268243</link>
		<dc:creator>domusvita</dc:creator>
		<pubDate>Sat, 18 Oct 2008 09:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268243</guid>
		<description>We are using XStandard.  Though the it&#039;s implementation can cause some issues with CSS (can&#039;t hide hide behind overlays) and it&#039;s documentation is sparse at best, the output is always XHTML compliant.</description>
		<content:encoded><![CDATA[<p>We are using XStandard.  Though the it&#8217;s implementation can cause some issues with CSS (can&#8217;t hide hide behind overlays) and it&#8217;s documentation is sparse at best, the output is always XHTML compliant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leech</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268241</link>
		<dc:creator>Leech</dc:creator>
		<pubDate>Fri, 17 Oct 2008 21:53:02 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268241</guid>
		<description>Is there a RTF Editor that outputs the source in Textile format? That would be really helpful for me.

Thanks.</description>
		<content:encoded><![CDATA[<p>Is there a RTF Editor that outputs the source in Textile format? That would be really helpful for me.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TeacherBR</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268195</link>
		<dc:creator>TeacherBR</dc:creator>
		<pubDate>Thu, 16 Oct 2008 12:30:16 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268195</guid>
		<description>Hi Dion and Folks,

You or the others know any web editor which can be used as a source code editor (with syntax highlight and perhaps code complete), preferably with Java language support ???

Cheers.</description>
		<content:encoded><![CDATA[<p>Hi Dion and Folks,</p>
<p>You or the others know any web editor which can be used as a source code editor (with syntax highlight and perhaps code complete), preferably with Java language support ???</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eargang</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268163</link>
		<dc:creator>eargang</dc:creator>
		<pubDate>Wed, 15 Oct 2008 15:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268163</guid>
		<description>I&#039;m curious why there aren&#039;t any editors that, behind the scenes, translate HTML into something more restricted — like MarkDown. I&#039;d love to have a WYSIWYM MarkDown editor instead of all this HTML stuff that just brings in Office Crud.</description>
		<content:encoded><![CDATA[<p>I&#8217;m curious why there aren&#8217;t any editors that, behind the scenes, translate HTML into something more restricted — like MarkDown. I&#8217;d love to have a WYSIWYM MarkDown editor instead of all this HTML stuff that just brings in Office Crud.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kae</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268135</link>
		<dc:creator>kae</dc:creator>
		<pubDate>Tue, 14 Oct 2008 11:22:12 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268135</guid>
		<description>@PuryFury - textarea is good one. ;-)</description>
		<content:encoded><![CDATA[<p>@PuryFury &#8211; textarea is good one. ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karlstanley</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268134</link>
		<dc:creator>karlstanley</dc:creator>
		<pubDate>Tue, 14 Oct 2008 11:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268134</guid>
		<description>I used TinyMCE in production code a couple of times, but I found it had major performance problems on pages with multiple editors (the last time I used it the deployment environment was a publishing house where everyone runs IE6 and nobody has a PC less than 3 or 4 years old. Lots of reports of non-responding browser from the users), so I switched to the YUI editor.

I felt bad about it as it seemed to me TinyMCE were the innovators here and I wanted to support them, but in the end the maintenance headaches were too much for me.

I find the YUI editor has better performance (anecdotally - I didn&#039;t run benchmarks - this is just based on feedback from users) and has better support for image embedding (it&#039;s pretty easy to build a drag/drop image embedding tool), which really matters when your users aren&#039;t all that tech-savvy but still need to be able to put pictures in their documents.

With both editors, I found my biggest headache was getting correct XHTML markup out of them, in particular given that lots of the content ended up being cut and pasted from MS Word into the editor window. I ended up writing lots of fairly hacky server-side code to sanitize the input. You don&#039;t want to know about how Word marks up tables...

I would recommend YUI over TinyMCE. Neither are perfect but both are better than writing your own rich text editor!</description>
		<content:encoded><![CDATA[<p>I used TinyMCE in production code a couple of times, but I found it had major performance problems on pages with multiple editors (the last time I used it the deployment environment was a publishing house where everyone runs IE6 and nobody has a PC less than 3 or 4 years old. Lots of reports of non-responding browser from the users), so I switched to the YUI editor.</p>
<p>I felt bad about it as it seemed to me TinyMCE were the innovators here and I wanted to support them, but in the end the maintenance headaches were too much for me.</p>
<p>I find the YUI editor has better performance (anecdotally &#8211; I didn&#8217;t run benchmarks &#8211; this is just based on feedback from users) and has better support for image embedding (it&#8217;s pretty easy to build a drag/drop image embedding tool), which really matters when your users aren&#8217;t all that tech-savvy but still need to be able to put pictures in their documents.</p>
<p>With both editors, I found my biggest headache was getting correct XHTML markup out of them, in particular given that lots of the content ended up being cut and pasted from MS Word into the editor window. I ended up writing lots of fairly hacky server-side code to sanitize the input. You don&#8217;t want to know about how Word marks up tables&#8230;</p>
<p>I would recommend YUI over TinyMCE. Neither are perfect but both are better than writing your own rich text editor!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PuryFury</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268128</link>
		<dc:creator>PuryFury</dc:creator>
		<pubDate>Tue, 14 Oct 2008 07:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268128</guid>
		<description>well.. I like simply design,functional editors.
anybody can show me?</description>
		<content:encoded><![CDATA[<p>well.. I like simply design,functional editors.<br />
anybody can show me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: newz2000</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268120</link>
		<dc:creator>newz2000</dc:creator>
		<pubDate>Mon, 13 Oct 2008 20:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268120</guid>
		<description>I deployed &lt;a href=&quot;http://www.wysiwygpro.com/&quot; rel=&quot;nofollow&quot;&gt;WYSIWYGPRO&lt;/a&gt; v2 and liked it a lot, but maybe not for shiny features that make it show up on the top of a list. The big selling point is that we found it worked very consistently and reliably across browsers and operating systems which made it very easy to create documentation and train staff. I have not tried v3 much yet but it has a new system for creating plugins that looks very well thought out.

I recently deployed tinymce in a project and found that inconsistencies abound (for example, clicking in a blank editor and hitting the enter key causes different results in different browsers).</description>
		<content:encoded><![CDATA[<p>I deployed <a href="http://www.wysiwygpro.com/" rel="nofollow">WYSIWYGPRO</a> v2 and liked it a lot, but maybe not for shiny features that make it show up on the top of a list. The big selling point is that we found it worked very consistently and reliably across browsers and operating systems which made it very easy to create documentation and train staff. I have not tried v3 much yet but it has a new system for creating plugins that looks very well thought out.</p>
<p>I recently deployed tinymce in a project and found that inconsistencies abound (for example, clicking in a blank editor and hitting the enter key causes different results in different browsers).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Skemp</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268109</link>
		<dc:creator>James Skemp</dc:creator>
		<pubDate>Mon, 13 Oct 2008 18:00:30 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268109</guid>
		<description>Well that didn&#039;t take long - account seems to be suspended already ...

The problem that I always run into is cross-browser issues, and that that results in code getting re-written.

border:1px solid black; becomes border-top:1px solid black;border-right:1px solid black; ...</description>
		<content:encoded><![CDATA[<p>Well that didn&#8217;t take long &#8211; account seems to be suspended already &#8230;</p>
<p>The problem that I always run into is cross-browser issues, and that that results in code getting re-written.</p>
<p>border:1px solid black; becomes border-top:1px solid black;border-right:1px solid black; &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: starkraving</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268105</link>
		<dc:creator>starkraving</dc:creator>
		<pubDate>Mon, 13 Oct 2008 17:03:49 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268105</guid>
		<description>TinyMCE is the one I&#039;m using these days, mostly because it&#039;s the only one I&#039;ve seen that can toggle from a simple textarea to the rich controls and back, whenever the user invokes it. Perfect for use with the &#039;edit-in-place&#039; paradigm.</description>
		<content:encoded><![CDATA[<p>TinyMCE is the one I&#8217;m using these days, mostly because it&#8217;s the only one I&#8217;ve seen that can toggle from a simple textarea to the rich controls and back, whenever the user invokes it. Perfect for use with the &#8216;edit-in-place&#8217; paradigm.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eyelidlessness</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268103</link>
		<dc:creator>eyelidlessness</dc:creator>
		<pubDate>Mon, 13 Oct 2008 16:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268103</guid>
		<description>TinyMCE is buggy and... not tiny. I recommend against it, especially if you anticipate having to edit the source code at all.
.
FCK is generally the most-recommended choice from people with experience with these things, but it&#039;s a little buggy too. For instance, its default configuration allows you to nest styles like bold by using the native browser cmd-b (Safari) then the toolbar bold, essentially making it impossible for FCK to know what native styling you&#039;ve applied. It also does some weird stuff like shifting (visual) whitespace around unexpectedly.
.
Faced with what I consider to be a bunch of poor choices, I have rolled my own editor for an AIR app (it feels rock solid, but has the advantage of having to only target Webkit), and haven&#039;t looked back.
.
For public-facing solutions, I&#039;d still probably recommend FCK despite its flaws. It&#039;s the best out there.</description>
		<content:encoded><![CDATA[<p>TinyMCE is buggy and&#8230; not tiny. I recommend against it, especially if you anticipate having to edit the source code at all.<br />
.<br />
FCK is generally the most-recommended choice from people with experience with these things, but it&#8217;s a little buggy too. For instance, its default configuration allows you to nest styles like bold by using the native browser cmd-b (Safari) then the toolbar bold, essentially making it impossible for FCK to know what native styling you&#8217;ve applied. It also does some weird stuff like shifting (visual) whitespace around unexpectedly.<br />
.<br />
Faced with what I consider to be a bunch of poor choices, I have rolled my own editor for an AIR app (it feels rock solid, but has the advantage of having to only target Webkit), and haven&#8217;t looked back.<br />
.<br />
For public-facing solutions, I&#8217;d still probably recommend FCK despite its flaws. It&#8217;s the best out there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmayle</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268100</link>
		<dc:creator>dmayle</dc:creator>
		<pubDate>Mon, 13 Oct 2008 16:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268100</guid>
		<description>Take a look at Xinha ( http://www.xinha.org ) It&#039;s a mature option, that&#039;s been around for awhile and is currently moving forward quickly.</description>
		<content:encoded><![CDATA[<p>Take a look at Xinha ( <a href="http://www.xinha.org" rel="nofollow">http://www.xinha.org</a> ) It&#8217;s a mature option, that&#8217;s been around for awhile and is currently moving forward quickly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vitrus</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268094</link>
		<dc:creator>vitrus</dc:creator>
		<pubDate>Mon, 13 Oct 2008 14:45:16 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268094</guid>
		<description>I&#039;ve worked with nicEdit in the past which is very small (it even has all the icons in 1 jpg). Performance however really becomes a problem when you add more than one editor to a page (especially in IE), and the lack of plugin support is a pity.

PunyMCE looks worth checking out..</description>
		<content:encoded><![CDATA[<p>I&#8217;ve worked with nicEdit in the past which is very small (it even has all the icons in 1 jpg). Performance however really becomes a problem when you add more than one editor to a page (especially in IE), and the lack of plugin support is a pity.</p>
<p>PunyMCE looks worth checking out..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: indiehead</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268093</link>
		<dc:creator>indiehead</dc:creator>
		<pubDate>Mon, 13 Oct 2008 14:14:51 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268093</guid>
		<description>nice one Spocke, must try that one out,</description>
		<content:encoded><![CDATA[<p>nice one Spocke, must try that one out,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: indiehead</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268092</link>
		<dc:creator>indiehead</dc:creator>
		<pubDate>Mon, 13 Oct 2008 14:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268092</guid>
		<description>TinyMCE is one of the good ones, very usable &amp; customisable.</description>
		<content:encoded><![CDATA[<p>TinyMCE is one of the good ones, very usable &amp; customisable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spocke</title>
		<link>http://ajaxian.com/archives/richtexteditors-compared/comment-page-1#comment-268090</link>
		<dc:creator>Spocke</dc:creator>
		<pubDate>Mon, 13 Oct 2008 13:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4738#comment-268090</guid>
		<description>If you need a really small and lightweight editor then have a look at PunyMCE.
http://www.moxieforge.net/overview.php?project_id=9&amp;category_id=5</description>
		<content:encoded><![CDATA[<p>If you need a really small and lightweight editor then have a look at PunyMCE.<br />
<a href="http://www.moxieforge.net/overview.php?project_id=9&#038;category_id=5" rel="nofollow">http://www.moxieforge.net/overview.php?project_id=9&#038;category_id=5</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

