Re: [O] Getting heading properties from org-element

2015-07-06 Thread John Kitchin
beautiful! Thanks! Nicolas Goaziou writes: > Hello, > > John Kitchin writes: > >> hm. We must have different use cases in mind. Currently I am using >> >> (save-excursion >> (goto-char >>(org-element-property :begin headline)) >>

Re: [O] Getting heading properties from org-element

2015-07-06 Thread Nicolas Goaziou
Hello, John Kitchin writes: > hm. We must have different use cases in mind. Currently I am using > > (save-excursion > (goto-char >(org-element-property :begin headline)) > (org-entry-properties)) > > to get the properties. I th

Re: [O] Getting heading properties from org-element

2015-07-06 Thread John Kitchin
hm. We must have different use cases in mind. Currently I am using (save-excursion (goto-char (org-element-property :begin headline)) (org-entry-properties)) to get the properties. I thought there would be a way to get those from

Re: [O] Getting heading properties from org-element

2015-07-05 Thread Thorsten Jolitz
John Kitchin writes: Hi John, > Is there a convenient way to get the properties of a headline from > org-element? I see they are in the parsed output, e.g. as :CATEGORIES > emacs,org :DATE today, but I didn't see a way to get them if I don't > already know what they are. > > I know how to get th

[O] Getting heading properties from org-element

2015-07-05 Thread John Kitchin
Hi all, Is there a convenient way to get the properties of a headline from org-element? I see they are in the parsed output, e.g. as :CATEGORIES emacs,org :DATE today, but I didn't see a way to get them if I don't already know what they are. I know how to get these from an org file, e.g. org-entr