Web Label & Others Text Formatting with pure HTML

Hey there :smile:

I wonder how it is possible to style texts in labels or buttons using basic HTML formatting tags?
What are best practices to have multi-format text stylings?
The most challenge I see is actual inline formatting in multi part contents, like messages with different stylings. (Thinking about Markdown)

I found the tag, that works fine on Labels. Unfortunately, I was not able to succeed with WebListBox Rows, that have a applied WebStyle.

Var ucr As New WebListBoxStyleRenderer(user_style, "<raw><b>User: </b></raw>")
Var uccr As New WebListBoxStyleRenderer(user_style, mContent)


list_Chat.AddRow("<raw><b>User: </b></raw>")
list_Chat.CellTextAt(list_Chat.LastRowIndex,0) = ucr
list_Chat.AddRow(promptField.Text)
list_Chat.CellTextAt(list_Chat.LastRowIndex,0) = uccr

Bildschirmfoto 2023-12-12 um 19.53.57

This is just an illustration.

Cheers
// Patric

<raw> tags are used if there is no WebStyle. You may want to avoid the WebStyle if you want to use them.

You can open a Feature Request for review, maybe something can be added. You can open it using Issues.

Thank you vers much! Indeed that was the solution.