[O] Problem with code blocks and new exporter

2013-02-27 Thread Richard Stanton
I'm having trouble exporting code blocks with the new exporter. I'm sure I've missed something obvious, but can anyone tell me why the following file doesn't work exporting to LaTeX or HTML? --- Code snippet: #+begin_src python a = 5 #+end_src python When I export this, I

Re: [O] Problem with code blocks and new exporter

2013-02-27 Thread Bastien
Hi Richard, Richard Stanton stan...@haas.berkeley.edu writes: Code snippet: #+begin_src python a = 5 #+end_src python ^^ You don't need this. Use this: #+begin_src python a = 5 #+end_src -- Bastien

Re: [O] Problem with code blocks and new exporter

2013-02-27 Thread Richard Stanton
I thought I was probably being stupid. Thanks! -Original Message- From: Bastien Guerry [mailto:bastiengue...@gmail.com] On Behalf Of Bastien Sent: Wednesday, February 27, 2013 3:32 PM To: Richard Stanton Cc: emacs-orgmode@gnu.org Subject: Re: Problem with code blocks and new exporter Hi