sergio ruiz <[email protected]> writes:
> Is there a way to reference the values of properties, so that at render time,
> the document does something like:
>
> * Opening section
> :PROPERTIES:
> :section: test
> :time: 1 day
> :END:
>
> Is there a way to do something like.. this section is the <section> section
> and will be done in <time>
>
>
>
> which would render as:
>
> Is there a way to do something like.. this section is the test section and
> will be done in 1 day
How about something like this?
--8<---------------cut here---------------start------------->8---
* Opening section
:PROPERTIES:
:section: test
:time: 1 day
:END:
this section is the {{{property(section)}}} section and will be done
in {{{property(time)}}}
--8<---------------cut here---------------end--------------->8---
See (info "(org)Macro replacement") for more information on macros.