Nicolas Goaziou <m...@nicolasgoaziou.fr> writes:

Hello,

> Thorsten Jolitz <tjol...@gmail.com> writes:
>
>> (funny enough, some org elements have 'value' as their content, others
>> 'content').
>
> Could you point out where there is such discrepancy in "org-element.el"?

I have defined these two constants in org-dp.el to work around this
discrepancy (and to know which elements do not have interpreted content
at all):

,----
| (defconst org-dp-no-content-elems
|   (list 'babel-call 'clock 'comment 'comment-block 'diary-sexp
|       'example-block 'fixed-width 'horizontal-rule 'keyword
|       'latex-environment 'node-property 'planning 'src-block)
|   "List of Org elements without interpreted .")
| 
| (defconst org-dp-value-blocks
|   (list 'comment-block 'example-block 'src-block)
|   "List of Org block that have a :value instead of contents.")
`----

PS 
should probably read "... without interpreted content" in the first
defconst

-- 
cheers,
Thorsten


Reply via email to