<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WYGIWYG | ウダ2Blog</title>
	<atom:link href="https://uda2.com/blog/tag/wygiwyg/feed/" rel="self" type="application/rss+xml" />
	<link>https://uda2.com/blog</link>
	<description>大阪でフリーランスとしてWEB制作している管理人が気になった技術をメモったり、作ったツールの紹介などを綴っているブログです。</description>
	<lastBuildDate>Tue, 24 Feb 2015 05:44:19 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>ブラウザで使えるWYGIWYGエディター</title>
		<link>https://uda2.com/blog/wygiwyg_editer/</link>
					<comments>https://uda2.com/blog/wygiwyg_editer/#respond</comments>
		
		<dc:creator><![CDATA[uda2]]></dc:creator>
		<pubDate>Sat, 07 Nov 2009 19:00:32 +0000</pubDate>
				<category><![CDATA[制作日記]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[WYGIWYG]]></category>
		<guid isPermaLink="false">http://uda2.com/blog/?p=847</guid>

					<description><![CDATA[<p>新着情報をユーザー側で編集できるシステムを作ろうとTEXTAREAをWYSIWYGにするオープンソースなAJAXを探した。 TinyMCE：有名で高性能だけど重い。LGPLライセンス。 FCKeditor：高性能だけどさ</p>
The post <a href="https://uda2.com/blog/wygiwyg_editer/">ブラウザで使えるWYGIWYGエディター</a> first appeared on <a href="https://uda2.com/blog">ウダ2Blog</a>.]]></description>
										<content:encoded><![CDATA[<div><img fetchpriority="high" decoding="async" class="size-full wp-image-848" title="WS000000_s" src="http://uda2.com/blog/wp-content/uploads/WS000000_s.jpg" alt="YUIのWYSIWYGエディタ" width="450" height="200" /></div>
<p>新着情報をユーザー側で編集できるシステムを作ろうとTEXTAREAをWYSIWYGにするオープンソースなAJAXを探した。<br />
<a href="http://tinymce.moxiecode.com/index.php" target="_blank">TinyMCE</a>：有名で高性能だけど重い。LGPLライセンス。<br />
<a href="http://www.fckeditor.net/default.html" target="_blank">FCKeditor</a>：高性能だけどさらに重い。LGPLライセンス。<br />
<a href="http://ckeditor.com/" target="_blank">CKEditor</a>：FCKeditorを更に高性能に軽くなった。LGPLライセンス。<br />
PunyMCE：TinyMCEの軽量版高速だけどGPL、LGPL、MPLライセンス。<br />
<a href="http://freerichtexteditor.com/" target="_blank">Free Rich Text Editor</a>：ライセンスはCCなので使えるけど小窓表示がうっとうしい。<br />
<a href="http://xinha.webfactional.com/" target="_blank">Xinha</a>：高機能だけど重い。BSDライセンス。<br />
<a href="http://jhtmlarea.codeplex.com/" target="_blank">jHtmlArea</a>：jQueryなWYSIWYGエディタ、機能は少なすぎる。（h1にしてしまうとpに戻らない。IEで表示が変）<br />
<a href="http://code.google.com/p/jwysiwyg/" target="_blank">jwysiwyg</a>：jQueryなWYSIWYGエディタ、機能は少なすぎLGPLライセンス。<br />
<a href="http://spaweditor.com/en/disp.php/en_products/en_spaw/en_spaw_intro" target="_blank">SPAW Editor</a>：UIも美しくタブが使え高性能だけど重く小窓を多用しGPLライセンス。<br />
<a href="http://koivi.com/WYSIWYG-Editor/" target="_blank">TTW HTML Editor</a>：機能が微妙（テーブルが作れるのに画像は貼れない）更新が止まってる。<br />
<a href="http://developer.yahoo.com/yui/editor/" target="_blank">YUI Rich Text Editor</a>：機能は必要十分でYahoo!なので安心、動作も重くなくBSDライセンス。ただ、読み込むライブラリ数が多いのでごちゃつく。<br />
<a href="http://nicedit.com/index.php" target="_blank">NicEdit</a>：シンプルで機能の追加もできMITライセンス。</p>
<p>今回試した中では<strong>「CKEditor」</strong>がいい感じだったか、作る予定のシステムは仕事で使う可能性が高いので、GPL系のライセンスはソースを公開する必要があり商用には使えない。<br />
jQueryなのはカスタムするのを前提ならいいものになるかもしれないけど、そのままだと他と比べ劣る。<br />
ライセンス的にも動作的にも安心できるのは<strong>YUIのRich Text Editor</strong>だけどprototypeとかjQueryを使うときに衝突しないか不安になるので長い目で見ると問題あるかもしれないし、読み込むファイルが多く、足が遠のく。<br />
色々考えたあげく<strong>「NicEdit」</strong>を日本語化して使う事にした。</p>The post <a href="https://uda2.com/blog/wygiwyg_editer/">ブラウザで使えるWYGIWYGエディター</a> first appeared on <a href="https://uda2.com/blog">ウダ2Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://uda2.com/blog/wygiwyg_editer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
