
Power Apps doesn't natively render HTML formatting from rich text fields in galleries. The rich text editor stores content as HTML, but when you display ThisItem.Description in a label, you get the raw text without formatting. I have shown couple of example below which i have used.
<Label>.HtmlText = ThisItem.Description
With(
{rawText: ThisItem.Description},
Substitute(
Substitute(
Substitute(rawText, "<br>", " "),
Substitute(rawText, Regex(rawText, "<[^>]*>"), "")
),
" ", " "
)
)
Patch(
YourDataSource,
ThisRecord,
{
Description: RichTextEditor.HtmlText,
Description_Plain: PlainText(RichTextEditor.HtmlText)
}
)
<HtmlText>.HtmlText = ThisItem.Description
Gallery Label: Left(PlainText(ThisItem.Description), 100) & "..."
Detail Screen RichTextControl: ThisItem.Description