<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>Huddled Masses - Latest Comments in Textile Plugin 2.6 released</title><link>http://huddledmasses.disqus.com/</link><description>Joel Bennett's development blog...</description><language>en</language><lastBuildDate>Wed, 28 Mar 2007 01:37:45 -0000</lastBuildDate><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584526</link><description>bq. You *can* use xhtml while using textile, but you need to take into account that you *are* using textile. Which is to say: if you leave a blank line, textile is going to start a new paragraph for you...&lt;br&gt;&lt;br&gt;For those who aren't familiar with authoring WordPress plugins, you can easily alter the main textile() function [which WordPress calls for rendering text into textile output] so that it will not take action unless the post being displayed has a custom field value specifying to do so.&lt;br&gt;&lt;br&gt;Simply replace the textile() function inside textileWrapperForWordPress.php with the following code block. Then, for the posts you want to be rendered with textile, you'll need a custom field named "mime_type" that has the value of "textile" and _viola_, you've got textile output for that post only and your other posts aren't affected.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;function textile( $string='' ) {&lt;br&gt;	global $post;&lt;br&gt;	$mime = get_post_meta($post-&amp;gt;ID, 'mime_type', true);&lt;br&gt;&lt;br&gt;	if (isset($mime) &amp;amp;&amp;amp; $mime == 'textile') :&lt;br&gt;		$textile = new Textile;&lt;br&gt;		return $textile-&amp;gt;TextileThis($string, false, false, false, false);&lt;br&gt;	else :&lt;br&gt;		return $string;&lt;br&gt;	endif;&lt;br&gt;}</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jeremy Helms</dc:creator><pubDate>Wed, 28 Mar 2007 01:37:45 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584525</link><description>Man! I love you!!! Textules!!!!!&lt;br&gt;&lt;br&gt;sorty, meant to say Textile Rules!!!!!!!!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">g</dc:creator><pubDate>Sat, 12 Aug 2006 01:25:16 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584524</link><description>I just installed textile.  I guess I just don't get it.  Nothing appears different in my editing box.  What am I supposed to see.  I have not found any installation instructions.  Maybe I am missing something.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rocky Davidson</dc:creator><pubDate>Tue, 04 Jul 2006 13:50:56 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584523</link><description>I also have a problem, which I've noticed only since WP 2.0.3 (so it's easy to blame the upgrade): editing a comment with single quotes in it turns the single quotes into backslash-single-quotes. (That is, \' )&lt;br&gt;&lt;br&gt;Submitting the original comment works fine, and they work fine in posts -- it's only when editing a comment that this seems to happen.&lt;br&gt;&lt;br&gt;Can you advise us whether this is a bug in WP or in Textile 2.6 Beta?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Boyd</dc:creator><pubDate>Tue, 13 Jun 2006 18:02:48 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584522</link><description>Disregard my last post... I got that problem fixed.  I REALLY like Textile 2.6, but there's just one thing that's not working for me. I give my external links a class, e.g. &lt;br&gt;&lt;br&gt;"(ext)This &lt;a href="http://link%22:http://thislink.com" rel="nofollow"&gt;link":http://thislink.com&lt;/a&gt; &lt;br&gt;&lt;br&gt;Textile 2.6 seems to recognize classes on spans and block-level elements only.  Is there any way I can get it to recognize classes on my links? Thanks for your help.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Zuck</dc:creator><pubDate>Sun, 11 Jun 2006 12:47:27 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584521</link><description>I'm having trouble with Textile plugins since I upgraded to WordPress 2.0.3. It seems all the plugins, (including 2.6) seem to start all posts with two beginning paragraph tags, and end with two closing p tags. This is driving me crazy. Am I doing something wrong? Please help. Thanks</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Zuck</dc:creator><pubDate>Sun, 11 Jun 2006 05:31:10 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584520</link><description>@Jaykul: Thanks, I will.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">PA?l DegerstrA?m</dc:creator><pubDate>Mon, 15 May 2006 17:35:16 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584519</link><description>I installed your plugin - thanks, I love Textile2!  I got fed up with the default WordPress editor because it kept messing up my pre tags, and now I'm glad I started looking for a replacement.  This is a much more sensible way to create content than hand-coding HTML! :-)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matt</dc:creator><pubDate>Sun, 14 May 2006 13:59:06 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584518</link><description>Thanks. I finally figured out that the marked up text that was showing up in the feed was coming from text in the WP2 "excerpt" entry area. I don't remember putting it there, but there it was anyway. I removed that (which as I understand was overriding what WP2 would normally provide the feed as a post excerpt) and things are back to normal. I agree with you about HTML not being in RSS. I was confused about where the markup was coming from and just figured that WP2 normally stripped the HTML out but didn't recognize the textile markup as such and left it alone. Anyway, thanks for the quick reply (and the plugin!) -- much appreciated.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paul</dc:creator><pubDate>Sat, 13 May 2006 22:02:17 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584517</link><description>PA?l: You should probably submit that to the author of textile itself, through his testing and bug-reporting page, "here":http://www.textism.com/tools/textile/.&lt;br&gt;&lt;br&gt;Paul: You *can* parse your feeds (I just don't think RSS should have HTML embedded in it).  Just uncomment the next-to-last line in the plugin: @// add_filter('the_excerpt_rss', 'textile', 6);@ (that is, delete the slashes at the front so it just looks like: @add_filter('the_excerpt_rss', 'textile', 6);@).</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jaykul</dc:creator><pubDate>Sat, 13 May 2006 20:56:19 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584516</link><description>Questions: I started using the latest Textile 2 plugin and then started using FeedBurner so I could publish summaries of the weblog entries on another site. FeedBurner is including the Textile markup in the feed data. I'm guessing this is because WP 2 is responding to feed requests straight from the database so the markup never goes through the textile plugin to get converted on its way to FeedBurner. Is this right? If so, is there a way to fix it?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paul</dc:creator><pubDate>Sat, 13 May 2006 19:35:05 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584515</link><description>When doing this:&lt;br&gt;&lt;br&gt;==&lt;br&gt;* "Some &lt;a href="http://text%22:http://www.example.com" rel="nofollow"&gt;text":http://www.example.com&lt;/a&gt;  &lt;br&gt;Text on a new line.&lt;br&gt;* "Some more text":http://www.foo.bar  &lt;br&gt;More text on a new line&lt;br&gt;==&lt;br&gt;&lt;br&gt;the list isn't closed (the last  and  are missing). It seems having text on a separate line (using double space after the link) breaks something. Is this something you can fix?&lt;br&gt;&lt;br&gt;Thanks for a great plugin!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">PA?l DegerstrA?m</dc:creator><pubDate>Sat, 13 May 2006 16:53:13 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584514</link><description>left arrow, exclamation point, dash, dash from the left side and one dash from the right side of the quicktag, which essentially renders it useless.  I had the same problem when testing it on the textism site.  Dunno if it's something I'm doing wrong or a bug in the system....  Any help you can provide would be greatly appreciated.  You can see what it's doing to my contact form here.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Thu, 04 May 2006 15:20:48 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584513</link><description>Hmm, and I'm noticing that it did it here, as well - removed the</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Thu, 04 May 2006 15:11:38 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584512</link><description>I have a contact form plugin that I use.  The plugin requires a quicktag (==&amp;lt;!--contactform--&amp;gt;==) to be inserted into a page in order for the contact form to appear.  When I upgraded from Textile1 to Textile2, my quicktags suddenly stopped working.  I even turned Textile2 off for a moment to verify that it was, indeed, the thing that was breaking the quicktags.  The nearest I can figure is that Textile sees the dashes before and after the quicktag and tries to convert them into formatted text.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Thu, 04 May 2006 15:06:48 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584511</link><description>What on earth do you mean?  The quicktags are just little javascripts that insert html tags.  There's nothing in Textile that affects them ... in fact, I just tried it and they work &lt;em&gt;fine&lt;/em&gt;.  Or are you talking about tags in the COMMENTS? They're disabled by default, but you can see in the comments above how to to enable them again.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jaykul</dc:creator><pubDate>Thu, 04 May 2006 00:29:55 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584510</link><description>I love this plugin, but I've discovered that this recent version breaks the WordPress ability to use quicktags.  Do you have a workaround solution for this?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Mon, 01 May 2006 13:41:29 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584509</link><description>OK I hate being annoying but after very close look at the files (textile2b and geshi) I found out why it wasn't working.&lt;br&gt;&lt;br&gt;In your textile2b file it says this around line 812:&lt;br&gt;@/* when using a code beautifire, we don't want this between code tags  - Joel &lt;br&gt;                NOTICE: this will (still) break if you use both:  */&lt;br&gt;                $offtags = ('pre.*|kbd.*|notextile');@&lt;br&gt;&lt;br&gt;and in the geshi file (geshi.php) around line 116:&lt;br&gt;@	var $header_type = GESHI_HEADER_PRE;  // The type of header to use@&lt;br&gt;&lt;br&gt;That variable needs to be set to GESHI_HEADER_DIV *knocks self on head* &lt;br&gt;I can't believe how long it was staring at me.  Geshi was putting pre inside the within code so it was breaking it.  So yeah this will fix the problem for those that wanna use Geshi ;)&lt;br&gt;&lt;br&gt;&lt;br&gt;(BTW you can delete my previous posts I won't be offended and this little aside too :* )</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Whisper</dc:creator><pubDate>Tue, 18 Apr 2006 19:36:27 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584508</link><description>I must sincerely appologize.  It was not Textile at all that was messing with TinyMCE it was in fact another plugin.  Apparently it took it a little while to kick in though __sigh__ .  I am so sorry for my assumption.  So the TinyMCE problem is solved ;) again I'm sorry.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Whisper</dc:creator><pubDate>Tue, 18 Apr 2006 16:56:51 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584507</link><description>I installed your plugin on one of my blogs that I share with some family members.  After they played with it and decided they would rather just use the rich text editor I uninstalled it (deactivated it and deleted the file) Now I have a problem. The rich text editor is gone, everyone has the option enabled in their profile, it's also enabled on the Options page, but it will not load on the "Write" pages.  I have looked everywhere I can think of even in the DB and cleared my cache folder too. I cannot find whats causing this and the last thing that happened right before it disappeared was the instalation of Textile.  Can you help me please :) &lt;br&gt;&lt;br&gt;BTW I do have this installed on MY blog and I *LOVE* it thank you so much.  Though I wish I could get mine to work with Geshi like you did, but no biggie I would so rather have Textile than Geshi.  Beautiful plugin now if only my family would understand how nice it is :P</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Whisper</dc:creator><pubDate>Tue, 18 Apr 2006 14:49:09 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584506</link><description>thx, commenting out these two lines did it for me :-)&lt;br&gt;@contact form plugin: well, i dont know anything about wp's plugin structure, so i dont know in which way i could change the plugin. i only can see that you're right: it's calling a filter for "the_content".&lt;br&gt;&lt;br&gt;thats the plugin: &lt;a href="http://johannesries.de/webwork/contactform/" rel="nofollow"&gt;http://johannesries.de/webwork/contactform/&lt;/a&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arne</dc:creator><pubDate>Sun, 26 Mar 2006 17:18:50 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584505</link><description>Jeremy: That's a good question.  I'm not 100% sure if this will do what you want, but you can try using the 'lite' version...  You will see on lines 992-995 the function @textile@ which calls @TextileThis@, and passes only one parameter.  Make yourself a copy, call it @textileLite@ and change the call to @return $textile-&amp;gt;TextileThis($string, true);@ ... then, in your @add_filter@ calls, use @textileLite@ instead of @textile@.&lt;br&gt;&lt;br&gt;Arne: Look at the bottom of the file. Line 1008.  &lt;br&gt;Arne: Contact form plugin?  It must be (inappropriately) calling a filter for 'the_content', 'the_excerpt', or 'comment_text' ...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jaykul</dc:creator><pubDate>Sun, 26 Mar 2006 16:42:33 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584504</link><description>and another problem here... the contact form plugin doesnt work, also because of textile. isnt there a notextile-tag like in txp?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arne</dc:creator><pubDate>Thu, 23 Mar 2006 13:23:19 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584503</link><description>hi there,&lt;br&gt;&lt;br&gt;is there any chance to use the plugin without harming the function allowed_tags() (used in comments.php to show what html tags are allowed)? whenever i active the textile plugin, it strips away allowed_tags' output.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arne</dc:creator><pubDate>Wed, 22 Mar 2006 22:32:36 -0000</pubDate></item><item><title>Re: Textile Plugin 2.6 released</title><link>http://HuddledMasses.org/textile-plugin-26-released/#comment-2584502</link><description>Great plugin, I love it!!!&lt;br&gt;&lt;br&gt;I'm trying to push it a little further, to use it in titles and meta fields, and here's where I'm running into a problem:&lt;br&gt;&lt;br&gt;Is there a way to keep Textile from adding p tags when the content is only one line long? Then I can hard-code a field to be a header, for example, without getting a nested p tag...&lt;br&gt;&lt;br&gt;Any help you could offer would be appreciated.&lt;br&gt;&lt;br&gt;Thanks!&lt;br&gt;-Jeremy</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jeremy</dc:creator><pubDate>Mon, 20 Feb 2006 14:37:17 -0000</pubDate></item></channel></rss>