Re: [O] get all todo items as lisp list

2012-02-19 Thread Nicolas Goaziou
Hello, Jambunathan K kjambunat...@gmail.com writes: Given a todo list in an org file, is there already a function, that converts this list to an elisp list, that contains at least heading, deadline and properties? Create the following interactive function. This functions exports Org file

[O] get all todo items as lisp list

2012-02-18 Thread Peter Münster
Hi, Given a todo list in an org file, is there already a function, that converts this list to an elisp list, that contains at least heading, deadline and properties? Example input: --8---cut here---start-8--- * TODO todo-test DEADLINE: 2012-04-19 Thu 13:33

Re: [O] get all todo items as lisp list

2012-02-18 Thread Eric Abrahamsen
On Sun, Feb 19 2012, Peter Münster wrote: Hi, Given a todo list in an org file, is there already a function, that converts this list to an elisp list, that contains at least heading, deadline and properties? Example input: * TODO todo-test DEADLINE: 2012-04-19 Thu 13:33

Re: [O] get all todo items as lisp list

2012-02-18 Thread Jambunathan K
Hi, Given a todo list in an org file, is there already a function, that converts this list to an elisp list, that contains at least heading, deadline and properties? Create the following interactive function. This functions exports Org file to a *pretty* lisp file. --8---cut