On Tue, 24 Aug 2010 23:32:01 -0400, Benjamin Beckwith wrote: > > Rafael, > > I had my shortcodes setup to accept the language directly. Your change > should work as you indicated. I have an additional fix to my code that > should behave better for you. I add a property, org-protected, that > prevents processing of the text. > > I tried it on your code blocks by calling org-export directly (C-c C-e) > and then choosing 'H' to see the html in a buffer. This really helps > with debug. > > Fixed code follows [...] Benjamin, can you show us a simple example blog entry that works with this? I have tried and, with your version, I do not get the source code plugin in Wordpress invoked. If I use Rafael's change, the plugin does get used. Also, both your code and Rafael's cause all linebreaks in the code to disappear. For instance, with some simple =MATLAB= code: --8<---------------cut here---------------start------------->8--- #+srcname: matlabblock #+begin_src matlab function y = f(x) x = 1989; y = (2010-x)^2; #+end_src --8<---------------cut here---------------end--------------->8--- your most recent code generates ,---- |

[matlab] function y = f(x) x = 1989; y = (2010-x)^2; [/matlab] `---- which is not something wordpress seems to understand? Thanks, eric