> ## Documentation Index
> Fetch the complete documentation index at: https://easyaf.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Html

> A port of the ASP.NET MVC HtmlHelper class to Blazor.

## Definition

**Assembly:** CloudNimble.BlazorEssentials.dll

**Namespace:** CloudNimble.BlazorEssentials

**Inheritance:** System.Object

## Syntax

```csharp theme={"dark"}
CloudNimble.BlazorEssentials.Html
```

## Summary

A port of the ASP.NET MVC HtmlHelper class to Blazor.

## Remarks

[https://github.com/aspnet/AspNetWebStack/blob/main/src/System.Web.Mvc/HtmlHelper.cs](https://github.com/aspnet/AspNetWebStack/blob/main/src/System.Web.Mvc/HtmlHelper.cs) &
[https://github.com/dotnet/aspnetcore/tree/main/src/Mvc/Mvc.ViewFeatures/src/Rendering](https://github.com/dotnet/aspnetcore/tree/main/src/Mvc/Mvc.ViewFeatures/src/Rendering)

## Methods

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Raw

Outputs HTML to the browser without encoding it.

#### Syntax

```csharp theme={"dark"}
public static Microsoft.AspNetCore.Components.MarkupString Raw(string content)
```

#### Parameters

| Name      | Type     | Description |
| --------- | -------- | ----------- |
| `content` | `string` | -           |

#### Returns

Type: `Microsoft.AspNetCore.Components.MarkupString`
A [MarkupString](https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.components.markupstring) containing the pre-encoded HTML.
