Craft\MinifyService::htmlMin PHP 메소드

htmlMin() 공개 메소드

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