I’m trying to make a simple repport and wonder if I can make line breaks in a table?
I have tried a few different things like:
output.table(e
{'': 'start', '%':0},
{'': 'Halfway', '%':50},
{'': 'finished\ncompleted' , '%':100},
]
)
output.table(e
{'': 'start', '%':0},
{'': 'Halfway', '%':50},
{'': 'Delivered<br>Completed' , '%':100},
]
)
output.table(e
{'': 'start', '%':0},
{'': 'Halfway', '%':50},
{'': 'Delivered\nCompleted' , '%':100},
]
)
output.table(e
{'': 'start', '%':0},
{'': 'Halfway', '%':50},
{'': :'Delivered', 'Completed'] , '%':100},
]
)
output.table(e
{'': 'start', '%':0},
{'': 'Halfway', '%':50},
{'': `Delivered
Completed` , '%':100},
]
)
The closest I’ve come to a line break is this:
output.table(b
{'': 'start', '%':0},
{'': 'Halfway', '%':50},
{'': '{'Finished': 'Delivered'}, {'Finished': 'completed' }] , '%':100},
]
)
However it’s not user friendly as it just lists two objects, and I just need two stacked strings.
Is it not possible at all to make a line break?