How do I render raw HTML in Blazor?
This code will help you to understand how to render raw HTML in Blazor.
How do I render raw HTML in Blazor?
Raw HTML can be rendered in Blazor by using the MarkupString. You can set the raw HTML as a string to any parameter and cast it in a markup string.
@page "/"
@((MarkupString)myMarkup)
@code {
string myMarkup = "<p class='markup'>This is a <em>markup string</em>.</p> <button class='btn btn-primary'>Button</button>";
}
For better understanding please follow the below-given link:
https://stackoverflow.com/questions/50604366/is-there-an-equivalent-to-html-raw-in-blazor?answertab=active#tab-top

