chris <[EMAIL PROTECTED]> writes: > So, this is a function I use to htmlize the agenda buffer. Very basic, > but works for me to be able to see my TODOs away from my desktop > > (defun cw-print-agenda () > "htmlize org-mode's agenda" > (interactive "P") > > (require 'htmlize) > > (let ((todo-buffer "*Org Agenda*")) > > (org-todo-list 0) > > (set-buffer (htmlize-buffer)) > > (write-file "~/public_html/Todo.html") > > (kill-this-buffer) > > (kill-buffer todo-buffer)))
I guess (interactive "P") should be (interactive) only, and (org-todo-list 0) should be replaced by something like (org-todo-list "TODO") since 4.70. Nice use of htmlize though! -- Bastien _______________________________________________ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode