I would like to place a description environment inside a footnote, e.g.:
\definedescription[descr][headstyle=normal, style=normal, width=3em]
\starttext
This is some text.\footnote{\startdescr{Label} This is a footnote.\stopdescr}
\stoptext
When I compile this code, it places the footnote number, but then skips an extra line before displaying the description environment, e.g.:
This is some text.~1
-----
1
Label This is a footnote.
How can I get it to appear like this?
This is some text.~1
-----
1 Label This is a footnote.