Re: [Orgmode] Re: Option to turning off the last line in HTML export postamble

2008-06-26 Thread Wanrong Lin
Thanks a lot for all your replies and suggestions. Carsten put in a new option for it, so I will just use that until more sophisticated needs come up. Wanrong Sebastian Rose wrote: How about: #postamble p { display:none; visibility:hidden; } #postamble p.author { display:block; visibility

Re: [Orgmode] Re: Option to turning off the last line in HTML export postamble

2008-06-26 Thread Sebastian Rose
How about: #postamble p { display:none; visibility:hidden; } #postamble p.author { display:block; visibility:visible; } #postamble p.date { display:block; visibility:visible; } Renzo Been :-) schrieb: Wanrong Lin gmail.com> writes: Yes, it's right there in the manual... add the followi

[Orgmode] Re: Option to turning off the last line in HTML export postamble

2008-06-25 Thread Renzo Been : - )
Wanrong Lin gmail.com> writes: > > > > Yes, it's right there in the manual... > > > > add the following line to your .emacs > > > > (setq org-export-html-auto-postamble 'nil) > > > > That should do the trick > > > > Ciao, > > Renzo > > > > > > > > > Thanks for pointing it out, but that is no

Re: [Orgmode] Re: Option to turning off the last line in HTML export postamble

2008-06-25 Thread Wanrong Lin
Yes, it's right there in the manual... add the following line to your .emacs (setq org-export-html-auto-postamble 'nil) That should do the trick Ciao, Renzo Thanks for pointing it out, but that is not exactly what I wanted. (setq org-export-html-auto-postamble 'nil) will remove the

[Orgmode] Re: Option to turning off the last line in HTML export postamble

2008-06-25 Thread Renzo Been : - )
Wanrong Lin gmail.com> writes: > > Hi, > > For some of my org files, I don't want the following line to show up in > my HTML export: > > "HTML generated by org-mode 6.05b in emacs 22" > > Is there an option to turn it off? I looked at the org source code and > it seems the answer is no. Can