Hi all, i want to use tables for constructing poems structure this snippet of code works well: \startsetups tablepoem \setupTABLE[column][each][width=5cm] \stopsetups \starttext \bTABLE[setups=tablepoem] \bTR \bTD One one ons ksl \eTD \bTD two gfjgfd oski kwo \eTD \eTR \bTR \bTD One wer s dft tgf \eTD \bTD two gfkdsjg dfs we \eTD \eTR \eTABLE \stoptext but when i use this code for simplifying of changing cells I get an error: \startsetups tablepoem \setupTABLE[column][each][width=5cm] \stopsetups \def\Poemstart{\bTABLE[setups=tablepoem] \bTR \bTD} \def\Mesra{\eTD \bTD} \def\nextBeyt{\eTD\eTR\bTR\bTD} \def\Poemstop{\eTD\eTR\eTABLE} \starttext \Poemstart One one ons ksl \Mesra two gfjgfd oski kwo \nextBeyt One wer s dft tgf \Mesra two gfkdsjg dfs we \Poemstop \stoptext what is the problem?