Hello,
How to make the period after the number be after the second parenthesis when there is a title like this  Définition 1.1 (Title). ?
Thanks
Fabrice

################################################
\definestructureconversionset [structure] [n, R, n, n, n] [n]
   
\defineconversionset [digit] [] [n]

\setupheads[sectionconversionset=structure]

\setupenumerations
  [before={\blank},
   after={\blank},
   alternative=serried,
   distance=0.5em,
   title=yes,
   titleleft=,
   titleright=,
   titlestyle=normal,
   numbercommand=\groupedcommand{}{.},
   titlecommand=\groupedcommand{(}{)},  
   width=broad,
   way=bychapter,
   prefix=yes,
   prefixsegments=chapter,
   prefixconversionset=digit,]

\defineenumeration
   [definition]
   [text=Définition,
    number=yes,
    style=italic]

\starttext
\startchapter
  [title={First Chapter}]
  \startdefinition
    [title={My first définition}]
    \input{ward}
  \stopdefinition
  \startdefinition
    \input ward
  \stopdefinition
  \startdefinition
    [title={My third définition}]
    \input ward
  \stopdefinition
\stopchapter
\stopchapter
\stoptext