73 responses to “WordPress Plugin – Textile 2.0”

  1. James

    I’ve installed your Textile 2.6 plugin and also the GeSHi plugin. For some reason when I write:

    print (“Hello World”);

    I see the pure HTML tags for the syntax highlighting. WordPress is not rendering the HTML for some reason.

  2. The_Decryptor

    I have the same problem as you James, from what i can guess the Textile plugin is getting the html after the GeSHi plugin colours it, then Textile converts the html into entities.

    i tried using a Textile plugin that skipped over pre tags (what i was using to contain the source code) but it was just messing it up even more (wrapping the pre tags in another set of pre tags, then just generally messing with the html)

    at the moment i have just disabled the source highlighting until i can find a working configuration.

  3. yukei.net > Quiero escribir con menos cA?digo y mA?s contenido

    [...] En estos dos casos existen plugins para WordPress, sin embargo, en mi caso particular me crean un problema bastante grande ya que al activarlos estropean el cA?digo de los posts anteriores, produciendo dificultades especialmente con los hipervA?nculos, pA?rrafos que se agregan de mA?s, etc. Lo ideal hubiese sido haberlos usado desde un comienzo, pero hasta ahora preferA?a escribir XHTML directamente, principalmente porque tenA?a acceso a todas sus posibilidades; sin embargo, desde la versiA?n 2.0 Textile, este lenguaje se ha convertido prA?cticamente en un meta-lenguaje de XHTML, que ofrece prA?cticamente todas sus posibilidades e incluso mA?s. Como contrapartida, es mA?s lento que sus anteriores versiones y puede llegar a ser una verdadera carga para tu servidor (en caso de que tu sitio sea intensamente visitado), pero para remediar esto existen otros plugins, tales como [...]

  4. yukei.net > WordPress, DreamHost y tiempo de CPU

    [...] Sin duda, este no es el A?nico factor a considerar al momento de fijarnos en el consumo de CPU, sino que tambiA?n es muy importante ponerle atenciA?n a los plugins que tenemos instalados y la cantidad de trabajo que implica servir cada pA?gina: por ejemplo, muchos ponen los A?ltimos comentarios en la pA?gina principal, y es sabido que algunos de los plugins que hacen esto implican mucho trabajo de CPU (p. ej: Brian’s Latest Comments, creo que se llama). FA?jense en el comentario que hace Mariano al post de Boja. Otro plugin que consume bastantes recursos es Textile, desde su versiA?n 2 en adelante (no pasa lo mismo con la primera versiA?n). [...]

  5. yukei.net > WordPress y uso de CPU: algunas lecciones

    [...] Los plugins generan una carga extra de trabajo, sobre todo aquellos filtros para el texto que escribimos, tales como Textile o los que generan muchas consultas a la base de datos, como Brian’s Latest Comments [...]

  6. Technosailor » Friday Poll and Another Migration

    [...] One thing I do have to say is that I have grown attached to Textile which was built into Textpattern. Same maker. So I added Textile for WordPress 2.6 to my plugin list allowing me to continue to post entries using it. [...]

  7. Technosailor » Textpattern to WordPress Import Script

    [...] Also, since you’re coming from Textpattern, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me… You’ll want it. [...]

  8. Axodys » Blog Archive » New Years Upgrade

    [...] On the individual post formatting front I’m also leaning towards standardizing on markdown rather than textile, but I will need to do some further investigatiion on the relevant post pluginformatting issues that WordPress 2.0 may have introduced. It looks like the Text Control plugin will allow me to switch between Textile and Markdown formatting relatively painlessly, but [Smarty Pants][] character encoding doesn’t seem to work properly at the moment. I’d investigate further, but it lets me set Textile as my default for all my old posts and specify Markdown on an individual post basis and that’s all I really need. [...]

  9. mileandra » Kommentarvorschau fur Wordpress

    [...] Achtung: das Preview-Template gibt den Inhalt mit der Funktion ‚textile()‘ aus. Wenn ihr das Textile-Plugin nicht installiert habt, entfernt die Funktion bitte aus dem Template, bevor ihr dieses einsetzt. [...]

  10. Compositio Hodierna » Test du plugin Textile

    [...] Il est disponible sur Site Textile [...]

  11. Tom

    There seems to be a bug with parsing link attributes. In this example, the link should have ‘oops’ as a class attribute. Instead, the parenthesised ‘oops’ appears as part of the link text.

    link attribute test: (oops)link text

  12. Jon Zuck

    Jaykul, Tom is right. The plugin is not parsing class attributes correctly. “link text(oop)” would give a TITLE attribute of “oops.” Parentheses coming before the text should give a CLASS of “oops.”

    I assign an “ext” class to all my external links. The parser bug is most frustrating. :-(

  13. Simon Wakeman » Making the move to Wordpress

    [...] Migrating content over from Textpattern was as simple as running a built-in script, which moved the content without any errors. The template migration was quite straightforward – I merged the XHTML/CSS from my old Textpattern templates with code taken from the great Minimalist Sandbox template. I then went through all my old content and removed the Textile (although had I wanted to continue with Textile there’s a plug-in available to run Textile in WordPress). [...]

  14. ikaruga

    Great plugin I love textile! Hey, so performance-wise how does this fare? Is a cached version of the html stored in the database or is it generated each time someone visits the article?

  15. ikaruga

    Hey Joel, does this plugin store a cache version of the HTML. Or does it convert the textile page to HTML on the fly each time someone visits the page?

    1. ikaruga

      I don't see anything wrong with storing two files — memory is cheap, speed and performance, on the other hand, are not. (Ex: my host gives me unlimited storage but temporarily takes me down if my site overwhelms their servers. In any case, we're talking about text files, so storing a second copy is not significant.)

      The real problem Joel is dynamically creating the html each time someone visits a page. That slows down your site (specially on a cheap host). Plus, if you ever get any decent traffic (say from digg), that'll kill you…

      I'm not really familiar with the cache plugins on wordpress —- but if I recall correctly, (at least on drupal), you don't enable them all the time because your site lags with changes you make. That's why the drupal textile plugin keeps a cache copy of the html. The result is that regardless of whether or not the cache is enabled, textile does NOT slow down your site…