Re: [O] Problem with BEGIN_SRC export-as-html

2012-03-26 Thread Eric Schulte
I believe that if htmlize.el is not available code blocks default to on HTML export because Org-mode is not able to fortify the source code. I would suggest either installing htmlize.el explicitly or switching to a newer version of Emacs in which it is included by default. Cheers, Nick Dokos w

Re: [O] Problem with BEGIN_SRC export-as-html

2012-03-25 Thread Nick Dokos
lowstz wrote: > #+BEGIN_SRC C > #include > > int main(void)  > { > printf("Hello, World!"\n); > } > #+END_SRC > > It work well in emacs, but when I run export as html > the part of BEGIN_SRC / END_SRC generate , it same with > the BEGIN_EXAMPLE / > END_EXAMPLE > I cannot reproduce this. I

[O] Problem with BEGIN_SRC export-as-html

2012-03-25 Thread lowstz
Hi, I have a problem with BEGIN_SRC export as html, I use the BEGIN_SRC code block my code like this: #+BEGIN_SRC C #include int main(void) { printf("Hello, World!"\n); } #+END_SRC It work well in emacs, but when I run export as html the part of BEGIN_SRC / END_SRC generate , it same with the