Category Archives: orgmode
Setup org2blog for blogging from emacs.
org2blog is written by Puneeth Chaganti. It is an emacs extension to post org mode sub trees as wordpress blog entries. In order to set this up clone the repository from github. # clone org2blog git repository git clone http://github.com/punchagan/org2blog.git Add the following snippet to ~/.emacs (add-to-list ‘load-path “~/site-lisp/org2blog”) (require ‘org2blog-autoloads) (setq org2blog/wp-blog-alist ‘((“noorul.com” :url [...]
Orgmode – Generate custom report using external python script.
I use orgmode in emacs as a to-do list manager. End of every week I send my status report to the team. Earlier I used to do this manually by going through the agenda for the week and collecting relevant information. I thought of automating it since this is repeated every week. It was super [...]