I am building an openerp report using OpenOffice SXW to RML conversion.
I have added a one2many field to model "product", which links to a new model "composition" made of a text field "name".
I use repeatin to list the composition items of the products "o":
[[repeatIn(objects,'o')]]
...
[repeatIn(o.composition,'c')]] [[c.name')]]
...
It works but creates a new line for each composition item. I want those items to be displayed on the same line instead of one per line.
How can I achieve that?