In 9.1.3.2 Template expansion, you say:
%\n Insert the text entered at the nth %^{PROMPT}, where
ānā is
but in my 25.1.1, you must use "%\\n".
Maybe, it is also worth noting that
%^{PROP}p Prompt the user for a value for property PROP.
will get inserted at the end of a list of properties, but white-space
will stay
in place:
:PROP_A: a
%^{PROP}p
:PROP_Z: z
==>
:PROP_A: a
:PROP_Z: z
:PROP: foo
To avoid white-space issues and an unexpected sorting order, you must
write (and you lose the preset values):
:PROPERTIES:%^{PROP_A}p%^{PROP}p%^{PROP_Z}p
--
Karl Eichwalder