Strut.CleanHtml
1.0.16
dotnet add package Strut.CleanHtml --version 1.0.16
NuGet\Install-Package Strut.CleanHtml -Version 1.0.16
<PackageReference Include="Strut.CleanHtml" Version="1.0.16" />
<PackageVersion Include="Strut.CleanHtml" Version="1.0.16" />
<PackageReference Include="Strut.CleanHtml" />
paket add Strut.CleanHtml --version 1.0.16
#r "nuget: Strut.CleanHtml, 1.0.16"
#:package Strut.CleanHtml@1.0.16
#addin nuget:?package=Strut.CleanHtml&version=1.0.16
#tool nuget:?package=Strut.CleanHtml&version=1.0.16
Strut.CleanHtml
ASP.NET Core middleware that removes unnecessary whitespace from HTML responses to reduce payload size.
Features
- Collapses consecutive whitespace characters into single spaces
- Strips whitespace between HTML tags
- Preserves content inside
<script>,<style>, ``,<![CDATA[...]]>, and<!DOCTYPE>blocks - Case-insensitive tag detection
- High-performance in-place byte-level processing (no string allocations)
- Only processes
text/htmlresponses; other content types pass through unchanged
Usage
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.UseCleanHtml();
app.Run();
Register the middleware early in the pipeline so it wraps subsequent middleware that produces HTML output.
How it works
The middleware intercepts the response stream, buffers the HTML output, then performs a single-pass in-place optimization over the byte buffer. It tracks parsing state (inside tags, scripts, styles, comments, CDATA, DOCTYPE) to decide where whitespace can safely be removed.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|