Hi,
I'd like to indent next paragraphs in multi paragraph descriptions.
For some reason, I can't figure out why this isn't working. Any idea?
Here is my code:
###
\setupwhitespace[none]
\setupindenting[yes, 3em, next]
\definedescription[question][
before={\vskip-\parskip},
after={\vskip-\parskip},
width=3em,
hang=3,
]
\definedescription[answer][
before={\vskip-\parskip},
after={\vskip-\parskip},
width=3em,
hang=3,
indenting={yes, 3em, next}, % Does nothing
indentnext=yes, % Does nothing too
]
\starttext
\startcolumns[n=2]
\startquestion{(T.C.)}
\input ward
\stopquestion
\startanswer{(N.M.)}
\input ward
\input ward
\stopanswer
\stopcolumns
\stoptext
###
Thanks!