Re: [O] How to activate pre.src in org-babel html output? Can only get class=example

2012-02-19 Thread Giovanni Moretti
Hi Eric My guess is that during export you get a message along the lines of "htmlize is required for export". Try explicitly loading htmlize.el (in the contrib/lisp directory of org) and then re-exporting ... You're spot on - importing htmlize.el did the trick. However, before importing i

Re: [O] How to activate pre.src in org-babel html output? Can only get class=example

2012-02-18 Thread Eric Schulte
Hi Giovanni, When I export the following code block , | #+begin_src emacs-lisp :exports both | :foo | #+end_src ` it generates the following HTML. , | :foo | | | | | :foo | ` My guess is that during export you get a message along the lines of "htmlize is required for exp

[O] How to activate pre.src in org-babel html output? Can only get class=example

2012-02-12 Thread Giovanni Moretti
Using org-babel, I'm wanting to output Python fragments along with the resultant output to HTML. That bit's easy, and the following works as expected: #+options: toc:nil num:nil * Using Python interactively Any commands typed into the console executed immediately. #+begin_src pytho