Static text in json forms

I want to sue jsonforms to show static rich text which contains markup. For example
Hello world >/b>
Can I put this in the uischema.json?

{
“type”: “Label”,
“text”: “Hello world
}
Also I want to use placeholders in the text. Something like:
{
“type”: “Label”,
“text”: “Name:#/properties/customer/properties/name”
}

Is this currently possible? Or do I need to use customer renderer. What is the best approach here?

[original thread by heukoe]

Hi @heukoe thanks for your interest in JSON Forms. Our LabelRenderer just takes the given text and puts it in a Typography h6 component. If you want a different behavior like rich text or including dynamically resolved properties you’ll need to implement this yourself in a custom renderer.