Craft\MinifyService::htmlMin PHP Method

htmlMin() public method

* -------------------------------------------------------------------------------- Minify the passed in HTML --------------------------------------------------------------------------------
public htmlMin ( $htmlText = "" )
    public function htmlMin($htmlText = "")
    {
        if ($this->shouldMinify) {
            $htmlText = \Minify_HTML::minify($htmlText);
        }
        return $htmlText;
    }