WebMarkupMin.Core 0.7.3-beta1

This is a prerelease version of WebMarkupMin.Core.
There is a newer version of this package available.
See the version list below for details.
dotnet add package WebMarkupMin.Core --version 0.7.3-beta1
NuGet\Install-Package WebMarkupMin.Core -Version 0.7.3-beta1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WebMarkupMin.Core" Version="0.7.3-beta1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WebMarkupMin.Core --version 0.7.3-beta1
#r "nuget: WebMarkupMin.Core, 0.7.3-beta1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WebMarkupMin.Core as a Cake Addin
#addin nuget:?package=WebMarkupMin.Core&version=0.7.3-beta1&prerelease

// Install WebMarkupMin.Core as a Cake Tool
#tool nuget:?package=WebMarkupMin.Core&version=0.7.3-beta1&prerelease

The Web Markup Minifier (abbreviated WebMarkupMin) is a .NET library that contains a set of markup minifiers. The objective of this project is to improve the performance of web applications by reducing the size of HTML, XHTML and XML code.

WebMarkupMin absorbed the best of existing solutions from non-microsoft platforms: Juriy Zaytsev's Experimental HTML Minifier (https://kangax.github.com/html-minifier/) (written in JavaScript) and Sergiy Kovalchuk's HtmlCompressor (http://code.google.com/p/htmlcompressor/) (written in Java).

Minification of markup produces by removing extra whitespaces, comments and redundant code (only for HTML and XHTML). In addition, HTML and XHTML minifiers supports the minification of CSS code from style tags and attributes, and minification of JavaScript code from script tags, event attributes and hyperlinks with javascript: protocol. WebMarkupMin.Core contains built-in JavaScript minifier based on the Douglas Crockford's JSMin (http://www.crockford.com/javascript/jsmin.html) and built-in CSS minifier based on the Mads Kristensen's Efficient stylesheet minifier (http://madskristensen.net/post/Efficient-stylesheet-minification-in-C.aspx). The above mentioned minifiers produce only the most simple minifications of CSS and JavaScript code, but you can always install additional modules that support the more powerful algorithms of minification: WebMarkupMin.MsAjax (contains minifier-adapters for the Microsoft Ajax Minifier - https://ajaxmin.codeplex.com/) and WebMarkupMin.Yui (contains minifier-adapters for YUI Compressor for .Net - https://yuicompressor.codeplex.com/).

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (9)

Showing the top 5 popular GitHub repositories that depend on WebMarkupMin.Core:

Repository Stars
Tyrrrz/DiscordChatExporter
Exports Discord chat logs to a file
grandnode/grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
madskristensen/WebEssentials2013
Visual Studio extension
madskristensen/MiniBlog
A minimal blog engine using Razor Web Pages
statiqdev/Statiq.Framework
A flexible and extensible static content generation framework for .NET.
Version Downloads Last updated
0.9.12 3,135 4/1/2015
0.9.11 1,517 1/31/2015
0.9.9 796 11/25/2014
0.9.8 2,549 10/26/2014
0.9.7 325 10/9/2014
0.9.6 207 9/30/2014
0.9.4 182 9/27/2014
0.9.3 540 9/14/2014
0.9.2 1,772 9/11/2014
0.9.1 115 9/10/2014
0.9.0 136 9/9/2014
0.9.0-beta4 88 9/8/2014
0.9.0-beta3 151 7/24/2014
0.9.0-beta2 82 7/10/2014
0.9.0-beta1 558 7/3/2014
0.8.21 825 5/27/2014
0.8.20 83 5/18/2014
0.8.18 418 3/15/2014
0.8.13 186 11/26/2013
0.8.11 146 9/17/2013
0.8.9 91 7/17/2013
0.8.7 86 6/5/2013
0.8.6 67 5/30/2013
0.8.2 81 4/22/2013
0.8.1 82 4/20/2013
0.8.0 76 4/15/2013
0.7.3-beta1 78 4/2/2013
0.7.2-alpha1 80 3/28/2013
0.7.1-alpha1 63 3/26/2013
0.7.0-alpha1 78 3/25/2013

In HTML/XHTML settings the MinifyWhitespace boolean property was replaced by the WhitespaceMinificationMode property, which can take 4 possible values​​: None, Safe, Medium and Aggressive.