Skip to content

Instantly share code, notes, and snippets.

View naik899's full-sized avatar

Ravindra Naik naik899

View GitHub Profile
@naik899
naik899 / txt
Created March 8, 2019 05:44
WhiteSpaceFilter
using System;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
namespace HtmlMinification
{
internal class WhitespaceFilter : Stream
{
private static readonly Regex Pattern = new Regex(@"^\s+", RegexOptions.Multiline | RegexOptions.Compiled);