Pavneet Arora
17. August 2015 23:05
I am trying to find the most effective way of changing paragraph spacing
for paragraphs inside table cells, without resorting to explicit \blank
directives.
Here are three ways how you can set the parskip value in a table cell.

\startsetups[table:whitespace]
    \setupwhitespace[medium]
\stopsetups

\starttext

\bTABLE
    \bTR
        \bTD \setupwhitespace[medium] \input knuth \eTD
    \eTR
    \bTR
        \bTD[style={\setupwhitespace[medium]}] \input knuth \eTD
    \eTR
    \bTR
        \bTD[setups=table:whitespace] \input knuth \eTD
    \eTR
\eTABLE

\stoptext

Wolfgang