From c75e3d259dad8c37829af91651d017a89dee3fb7 Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Wed, 27 May 2015 16:39:36 -0400 Subject: minify html and css --- (limited to 'site/functions.php') diff --git a/site/functions.php b/site/functions.php index fb023b9..b90a35e 100644 --- a/site/functions.php +++ b/site/functions.php @@ -18,7 +18,21 @@ */ /* Functions */ - + + /* Minified HTML output (note: needs work for
 tags) */
+	function miniHtml($strHtml) {
+		return $strHtml = preg_replace(
+			array('/(\s)+/s', '/\>[^\S ]+/s', '/[^\S ]+\', '<'), 
+			$strHtml
+		);
+	}
+
+	/* Minified CSS output */
+	function miniCss($strCss) {
+		return preg_replace("/\r|\n/", "", $strCss);
+	}
+
 	/* Generic function for showing a list of URLs */
 	function mirrorList($arrayMirrors,$strNotFoundMessage,$forIndexStart,$forIndexbelow) {
 
--
cgit v0.9.1