String values are normally converted in DOM text notes. To render encode string values as raw HTML you need to wrap the string value in a MarkupString. This will encode the given string value HTML/SVG and place it in the given location.
Refer to the following code sample.
@((MarkupString)RawString)
@code {
public string RawString = "<span style='color:red'>Blazor is awesome</span>";
}
Share with