I want to publish a project in Emacs org-mode, which contains several .html files. There are some python code examples in them that I wanna highlight. But htmlize.el won't do that for me. Strangely, when exporting single .html file (using C-c C-e h), the code examples are highlighted . So how could I get htmlize.el work for project publishing?

link|improve this question
Org-mode is a fast-moving target. Can you give more information about your setup? Specifically, what operating system you're using, what version of Emacs you're using and what version of Org-mode you're using would help me give some advice. – R. P. Dillon Dec 3 '10 at 18:43
feedback

2 Answers

You have to put your code inside #+BEGIN_SRC and #+END_SRC . For example

* My python code
#+BEGIN_SRC python
def foo():
  if bar == 1:
     bar = 2
  else: 
     bar = 3
#+END_SRC
link|improve this answer
1  
I've tried this before, but it actually doesn't work. Puzzled – dofine Dec 3 '10 at 10:00
feedback

In your org-publish-project-alist, set the htmlized-source property to non-nil:

(setq org-publish-project-alist
      '(("my-project"
           :base-directory ...
           :htmlized-source t
             ...
       )))

See the Publishing action section of the Org-mode manual.

link|improve this answer
Thank you. I've made it this way~ :) – dofine Dec 4 '10 at 5:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.