for example, in .py file:
....
x=fields.Html()
.....
self.x='test1'+'\n'+'test2'
...
then on Odoo page, I just will see as below:
test1 test2
how shll I see them in two lines as below
test1
test2
I mean I use "\n" which just insert an "blank" rather than "enter"; how to inset an "enter" into the line?