content = Minify_HTML::minify($this->content);
return true;
}
//Didn't minify :(
return false;
}
//Does nothing
public function cache()
{
//No cache for HTML
return true;
}
//Returns the content
public function getcontent()
{
return $this->content;
}
}