Re: Differentiating org element properties from built-ins?

2024-09-22 Thread tomas
On Sun, Sep 22, 2024 at 05:15:25PM +, Ihor Radchenko wrote: > writes: > > > I do see foo and bar (well, OK, :FOO and :BAR) with their values, but lots > > of other (let's call them "built-ins") like :begin and :post-affiliated. > > > > How do I keep those apart? Or do I have to resort to runn

Re: Differentiating org element properties from built-ins?

2024-09-22 Thread Ihor Radchenko
writes: > I do see foo and bar (well, OK, :FOO and :BAR) with their values, but lots > of other (let's call them "built-ins") like :begin and :post-affiliated. > > How do I keep those apart? Or do I have to resort to running regexps through > the buffer? (defun org-element-headline-parser (&o

Differentiating org element properties from built-ins?

2024-09-17 Thread tomas
Hi, Orgxperts assume I have something like this: ** Some heading :properties: :foo: some value for foo :bar: some value for bar :end: Now, when I do (org-element-properties-mapc (lambda (k v) (message "%s -> %s" k v)) (org-element-at-point)) I do see foo and bar (well, OK