<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: TinyMCE</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: TinyMCE</description>
<language>en</language>
<pubDate>Mon, 13 Oct 2008 16:23:04 +0000</pubDate>

<item>
<title>csseur3 on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-17565</link>
<pubDate>Wed, 23 Jul 2008 12:31:42 +0000</pubDate>
<dc:creator>csseur3</dc:creator>
<guid isPermaLink="false">17565@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hello, i have do that, and i have the buttons at the bottom of the textarea :/&#60;/p&#62;
&#60;p&#62;So, how to habe the buttons in top?&#60;/p&#62;
&#60;p&#62;And the code producted is &#38;lt;p&#38;gt;TEST&#38;lt;/p&#38;gt;  , how to fix that?&#60;/p&#62;
&#60;p&#62;bye,&#60;br /&#62;
and i think it is great if the tinymce is integrated in bbpress, like an option for example :)
&#60;/p&#62;</description>
</item>
<item>
<title>bobbyh on "tinyMCE losing &#60;p&#62; formatting on Edit"</title>
<link>http://bbpress.org/forums/topic/tinymce-losing-ltpgt-formatting-on-edit#post-16189</link>
<pubDate>Mon, 12 May 2008 23:02:03 +0000</pubDate>
<dc:creator>bobbyh</dc:creator>
<guid isPermaLink="false">16189@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sam, you're right, but upon making that config change I described above, the editing problem that chilledfresh described went away on my site.&#60;/p&#62;
&#60;p&#62;I didn't dig deeper, but that config change seems to resolve this issue.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "tinyMCE losing &#60;p&#62; formatting on Edit"</title>
<link>http://bbpress.org/forums/topic/tinymce-losing-ltpgt-formatting-on-edit#post-16188</link>
<pubDate>Mon, 12 May 2008 22:53:41 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">16188@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;bbPress turns &#38;lt; p &#38;gt; tags back into double line breaks and &#38;lt; code &#38;gt; back into backticks ( ` ).&#60;/p&#62;
&#60;p&#62;You will need to somehow override this or force reconversion in TinyMCE or FCKeditor&#60;code&#62;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>bobbyh on "tinyMCE losing &#60;p&#62; formatting on Edit"</title>
<link>http://bbpress.org/forums/topic/tinymce-losing-ltpgt-formatting-on-edit#post-16079</link>
<pubDate>Fri, 09 May 2008 03:01:46 +0000</pubDate>
<dc:creator>bobbyh</dc:creator>
<guid isPermaLink="false">16079@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This also happens to me! However, I've never looked into it...&#60;/p&#62;
&#60;p&#62;I just looked, and bbPress uses newlines to indicate breaks. This is parsed into &#38;lt;p&#38;gt;'s by a filter upon display. However, the edit textarea shows the unparsed text with just the newlines, and this gets mangled by tinymce.&#60;/p&#62;
&#60;p&#62;If you set this tinymce config value, though, it will turn newlines into br's, which should fix this problem for new posts:&#60;/p&#62;
&#60;p&#62;* &#60;a href=&#34;http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/convert_newlines_to_brs&#34; rel=&#34;nofollow&#34;&#62;http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/convert_newlines_to_brs&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I just tested this, and it works on new posts! (It won't work on old posts...)
&#60;/p&#62;</description>
</item>
<item>
<title>chilledfresh on "tinyMCE losing &#60;p&#62; formatting on Edit"</title>
<link>http://bbpress.org/forums/topic/tinymce-losing-ltpgt-formatting-on-edit#post-16077</link>
<pubDate>Fri, 09 May 2008 01:58:42 +0000</pubDate>
<dc:creator>chilledfresh</dc:creator>
<guid isPermaLink="false">16077@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm using the latest version of tinyMCE in my bbPress forum, but have run into an issue while editing posts. This problem occurs in both TinyMCE AND FCKeditor, so it must be related to how bbPress handles these types of plugins.&#60;/p&#62;
&#60;p&#62;I can post new topics fine and everything works. However, when I go in to edit a post the WYSIWYG editor loses all &#38;lt;p&#38;gt; tags, forcing everything to appear on a single line. All other formatting is retained correctly by the editor.&#60;/p&#62;
&#60;p&#62;Any idea on how I can fix this problem?
&#60;/p&#62;</description>
</item>
<item>
<title>harryworld on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-15953</link>
<pubDate>Sat, 03 May 2008 15:39:48 +0000</pubDate>
<dc:creator>harryworld</dc:creator>
<guid isPermaLink="false">15953@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I made use of a plugin to add tags&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
function allow_more_tags( $tags ) {&#60;br /&#62;
	$tags['p'] = array('style' =&#38;gt; array());&#60;br /&#62;
	$tags['span'] = array('style' =&#38;gt; array());&#60;br /&#62;
	return $tags;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;add_filter( 'bb_allowed_tags', 'allow_more_tags' );
&#60;/p&#62;&#60;/blockquote&#62;</description>
</item>
<item>
<title>svenl77 on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-15920</link>
<pubDate>Thu, 01 May 2008 21:21:39 +0000</pubDate>
<dc:creator>svenl77</dc:creator>
<guid isPermaLink="false">15920@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;how you did this?
&#60;/p&#62;</description>
</item>
<item>
<title>harryworld on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-15919</link>
<pubDate>Thu, 01 May 2008 19:06:22 +0000</pubDate>
<dc:creator>harryworld</dc:creator>
<guid isPermaLink="false">15919@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I found that it is as simple as to add the &#38;lt;p&#38;gt; tag to the allowed tags
&#60;/p&#62;</description>
</item>
<item>
<title>harryworld on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-15876</link>
<pubDate>Wed, 30 Apr 2008 04:14:37 +0000</pubDate>
<dc:creator>harryworld</dc:creator>
<guid isPermaLink="false">15876@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have successfully integrated TinyMCE to my editor in bbpress, which I found that is so easy.&#60;/p&#62;
&#60;p&#62;However, when doing the submit, TinyMCE submits the HTML code on behind to bbpress. I found that each line TinyMCE created a &#38;lt;p&#38;gt;...&#38;lt;/p&#38;gt; tags, but bbpress is not allowing this. Finally, &#38;lt;p&#38;gt;&#38;lt;/p&#38;gt; comes to the screen when viewing the post.&#60;/p&#62;
&#60;p&#62;Is there any workaround for this?
&#60;/p&#62;</description>
</item>
<item>
<title>marshosh on "i need ..."</title>
<link>http://bbpress.org/forums/topic/i-need-#post-12619</link>
<pubDate>Sat, 15 Dec 2007 11:28:35 +0000</pubDate>
<dc:creator>marshosh</dc:creator>
<guid isPermaLink="false">12619@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello all ...&#60;br /&#62;
I need more :)&#60;/p&#62;
&#60;p&#62;I need to adds description and keywords meta tags for both is_topic and is_forum.&#60;/p&#62;
&#60;p&#62;i was search in this forum i see one plugin but it wasn't work with 0.8.3
&#60;/p&#62;</description>
</item>
<item>
<title>marshosh on "i need ..."</title>
<link>http://bbpress.org/forums/topic/i-need-#post-12585</link>
<pubDate>Thu, 13 Dec 2007 17:22:44 +0000</pubDate>
<dc:creator>marshosh</dc:creator>
<guid isPermaLink="false">12585@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;chrishajer,Thank you!&#60;/p&#62;
&#60;p&#62;1.the FCK wysiwyg editor is very Nice ... but how i can install it in my BBpress ?&#60;/p&#62;
&#60;p&#62;2.This sitemap : &#60;a href=&#34;http://boakes.org/download/bbpress_sitemap.txt&#34; rel=&#34;nofollow&#34;&#62;http://boakes.org/download/bbpress_sitemap.txt&#60;/a&#62;&#60;br /&#62;
not working whith 0.8.3&#60;/p&#62;
&#60;p&#62;3.I will try to add this code .&#60;/p&#62;
&#60;p&#62;Thank you agin ... By.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "i need ..."</title>
<link>http://bbpress.org/forums/topic/i-need-#post-12584</link>
<pubDate>Thu, 13 Dec 2007 16:46:00 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12584@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;1.  You can integrate FCK Editor or TinyMCE if you are looking for a wysiwyg editor.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.fckeditor.net/&#34; rel=&#34;nofollow&#34;&#62;http://www.fckeditor.net/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://tinymce.moxiecode.com/&#34; rel=&#34;nofollow&#34;&#62;http://tinymce.moxiecode.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;1a.  To allow all that type of content, you're going to need a plugin.  Check out this thread:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/plugin-youtube-in-bbpress?replies=18#post-5707&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/plugin-youtube-in-bbpress?replies=18#post-5707&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;2.  Does the regular sitemap plugin NOT work with 0.8.3?  I never tried it.  &#60;a href=&#34;http://boakes.org/download/bbpress_sitemap.txt&#34; rel=&#34;nofollow&#34;&#62;http://boakes.org/download/bbpress_sitemap.txt&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;3.  To show hot tags, you are going to need to edit the template files for each page, then insert this tag where you want it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;p class=&#38;quot;frontpageheatmap&#38;quot;&#38;gt;&#38;lt;?php bb_tag_heat_map(); ?&#38;gt;&#38;lt;/p&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#38;nbsp;&#60;br /&#62;
Depending on the layout of each of your pages, you might need to create a new div to insert that tag heat map into, or maybe there is room inside an existing div.&#60;/p&#62;
&#60;p&#62;The things you are asking for are going to require a substantial amount of work on your part.  It can all be done (probably) but it's not going to be super quick.&#60;/p&#62;
&#60;p&#62;Good luck.
&#60;/p&#62;</description>
</item>
<item>
<title>marshosh on "i need ..."</title>
<link>http://bbpress.org/forums/topic/i-need-#post-12582</link>
<pubDate>Thu, 13 Dec 2007 13:37:25 +0000</pubDate>
<dc:creator>marshosh</dc:creator>
<guid isPermaLink="false">12582@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello ,&#60;br /&#62;
i'm use BBpress version 0.8.3 and i need some thing to it :&#60;/p&#62;
&#60;p&#62;1. i need wysiwyg editor which i can with it enter an IMG , SWF , WAV , RAM , RM , MPEG and more ...&#60;/p&#62;
&#60;p&#62;2.i need google sitemap which work whit 0.8.3&#60;/p&#62;
&#60;p&#62;3.i need to show the hot tags in all pages .&#60;/p&#62;
&#60;p&#62;thanks for all , and i am sory for my bad english
&#60;/p&#62;</description>
</item>
<item>
<title>kernow on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-6997</link>
<pubDate>Wed, 25 Apr 2007 18:28:01 +0000</pubDate>
<dc:creator>kernow</dc:creator>
<guid isPermaLink="false">6997@http://bbpress.org/forums/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;fel64 wrote: How did you make it work?
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Its easy to install really. You have the main tinymce folder which I opened and uploaded the contents to the 'my-plugins' folder. This is the mistake I made.&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;Just upload  the jscript folder within the tinymce folder to my-plugins&#60;/li&#62;
&#60;li&#62;Edit header.php in your bbpress template, adding the reference to the javascript&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;This is part of the code which I copied, which you put before the &#38;lt;/head&#38;gt; closing tag in header.php.&#60;/p&#62;
&#60;p&#62;&#38;lt;script language=&#34;javascript&#34; type=&#34;text/javascript&#34; src=&#34;http://example.com/bbpress/my-plugins/jscripts/tiny_mce/tiny_mce.js&#34;&#38;gt;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;Change to:&#60;/p&#62;
&#60;p&#62;&#38;lt;script language=&#34;javascript&#34; type=&#34;text/javascript&#34; src=&#34;my-plugins/jscripts/tiny_mce/tiny_mce.js&#34;&#38;gt;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;The FULL code you put in header php is the top of the page, but this bit is important.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-6985</link>
<pubDate>Wed, 25 Apr 2007 08:32:49 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6985@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How did you make it work?
&#60;/p&#62;</description>
</item>
<item>
<title>kernow on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-6983</link>
<pubDate>Wed, 25 Apr 2007 00:42:54 +0000</pubDate>
<dc:creator>kernow</dc:creator>
<guid isPermaLink="false">6983@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Since my last post (panic?) I realised my mistake. It works OK now. Problem is the &#60;em&#62;'guy who knows more than me' &#60;/em&#62;is beginning to worry me now hmmm.
&#60;/p&#62;</description>
</item>
<item>
<title>kernow on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-6979</link>
<pubDate>Tue, 24 Apr 2007 18:52:16 +0000</pubDate>
<dc:creator>kernow</dc:creator>
<guid isPermaLink="false">6979@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Tried adding the &#60;em&#62;TinyMCE to bbpress&#60;/em&#62; and it didn't work. Asked a guy who knows more about this than I do, and he couldn't get it to work either. Browsing for an answer, its suggested&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62; a javascript conflict with a plugin&#60;/li&#62;
&#60;li&#62;, or template.
&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;I'm using the latest version of WordPress in case there is a conflict there. (Windows hosting)
&#60;/p&#62;</description>
</item>
<item>
<title>AphelionZ on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-6954</link>
<pubDate>Mon, 23 Apr 2007 15:30:58 +0000</pubDate>
<dc:creator>AphelionZ</dc:creator>
<guid isPermaLink="false">6954@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks. Yeah I hear where you're coming from, TinyMCE slows my site down a bit and im having trouble with blockquotes, but you can slim it down and make it tiny, so i'll stick with it for now... ive already started copying over all my emotions into it :)
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-6944</link>
<pubDate>Mon, 23 Apr 2007 08:47:40 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">6944@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Like fckEditor...&#60;/p&#62;
&#60;p&#62;But to be honest, these scripts are too big for bbPress. bbPress only supports &#60;code&#62;a blockquote br code em strong ul ol li&#60;/code&#62; and not colors, images, tables, font types etc.&#60;/p&#62;
&#60;p&#62;I am thinking of writing a wysiwyg editor that only supports these standard markups and when an extention/plugin is installed (smilies, images) it will support these too. And it will be skinable ofcourse to match the theme installed.&#60;/p&#62;
&#60;p&#62;But I am a busy man, so this will not happen anytime soon :(
&#60;/p&#62;</description>
</item>
<item>
<title>AphelionZ on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-6922</link>
<pubDate>Sun, 22 Apr 2007 22:30:07 +0000</pubDate>
<dc:creator>AphelionZ</dc:creator>
<guid isPermaLink="false">6922@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Null,&#60;/p&#62;
&#60;p&#62;Poo poo on TinyMCE but dont offer any other solutions, why don't you. How about some links to the other better ones?
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-5971</link>
<pubDate>Mon, 26 Mar 2007 19:43:23 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">5971@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I fixed mine... just had the code pasted incorrectly. But I didn't like it... seems to slow the site down quite a bit. I'll wait for a better solution.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-5969</link>
<pubDate>Mon, 26 Mar 2007 19:20:29 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">5969@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What's up with that tinymc... it's crap really... don't understand why wordpress uses it either, there are way better ones out there.... :D
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-5966</link>
<pubDate>Mon, 26 Mar 2007 18:37:03 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">5966@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hmmm... Doesn't seem to work. Any ideas?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.citizenkeith.com/forums/&#34; rel=&#34;nofollow&#34;&#62;http://www.citizenkeith.com/forums/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "which plugin can support the toolbar like this?"</title>
<link>http://bbpress.org/forums/topic/which-plugin-can-support-the-toolbar-like-this#post-5593</link>
<pubDate>Fri, 16 Mar 2007 17:21:32 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">5593@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah I know that is my only minus for FCK at the moment. ALready tried mailing them about this cause Opera DOES support it, it just needs to be activated in FCK it self (or identify Opera as MSIE
&#60;/p&#62;</description>
</item>
<item>
<title>drmike on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-5574</link>
<pubDate>Fri, 16 Mar 2007 03:37:01 +0000</pubDate>
<dc:creator>drmike</dc:creator>
<guid isPermaLink="false">5574@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Do a search for 'strike' as we discussed the method to add in extra tags a few weeks ago.
&#60;/p&#62;</description>
</item>
<item>
<title>Staffan on "which plugin can support the toolbar like this?"</title>
<link>http://bbpress.org/forums/topic/which-plugin-can-support-the-toolbar-like-this#post-5571</link>
<pubDate>Thu, 15 Mar 2007 23:13:14 +0000</pubDate>
<dc:creator>Staffan</dc:creator>
<guid isPermaLink="false">5571@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Right. I'm just trying to figure out which one I'm gonna use in my forum. Right now I'm leaning towards TinyMCE, since FCKeditor doesn't work with Opera (even though TMCE takes forever to load in my test installation...)
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "which plugin can support the toolbar like this?"</title>
<link>http://bbpress.org/forums/topic/which-plugin-can-support-the-toolbar-like-this#post-5570</link>
<pubDate>Thu, 15 Mar 2007 22:11:33 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">5570@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just compare FCKeditor and TINYmce with image lining/placing, you'll get the point :) FCK is more user friendly in my oppinion
&#60;/p&#62;</description>
</item>
<item>
<title>Staffan on "which plugin can support the toolbar like this?"</title>
<link>http://bbpress.org/forums/topic/which-plugin-can-support-the-toolbar-like-this#post-5567</link>
<pubDate>Thu, 15 Mar 2007 19:37:58 +0000</pubDate>
<dc:creator>Staffan</dc:creator>
<guid isPermaLink="false">5567@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Null: What is it you don't like about TinyMCE?
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "which plugin can support the toolbar like this?"</title>
<link>http://bbpress.org/forums/topic/which-plugin-can-support-the-toolbar-like-this#post-5547</link>
<pubDate>Thu, 15 Mar 2007 09:32:44 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">5547@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;NAh don't use tinyMCE it's crap :D FCKeditor is so much better&#60;/p&#62;
&#60;p&#62;Also if I have the time, I am going to make a WYSIWYG editor for bbPress that uses open source scripts and will be 10 times smaller to install (also cause bbPress has limited functions to use), but thats far far far away for now :)
&#60;/p&#62;</description>
</item>
<item>
<title>wenkong on "which plugin can support the toolbar like this?"</title>
<link>http://bbpress.org/forums/topic/which-plugin-can-support-the-toolbar-like-this#post-5542</link>
<pubDate>Thu, 15 Mar 2007 02:24:26 +0000</pubDate>
<dc:creator>wenkong</dc:creator>
<guid isPermaLink="false">5542@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;thanks, I try TinyMCE and note some step for others need.&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/897?replies=1#post-5541&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/897?replies=1#post-5541&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;do u know which plugin use in this: (seem not like TinyMCE)&#60;br /&#62;
&#60;a href=&#34;http://img359.imageshack.us/img359/5784/bbpresstoolsqg1.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img359.imageshack.us/img359/5784/bbpresstoolsqg1.jpg&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
