/** * Compress HTML * * This is a heavy regex-based removal of whitespace, unnecessary comments and * tokens. IE conditional comments are preserved. There are also options to have * STYLE and SCRIPT blocks compressed by callback functions. * * A test suite is available. * * @package Minify * @author Stephen Clay */ namespace LiteSpeed\Lib ; defined( 'WPINC' ) || exit ; class HTML_MIN { /** * @var string */ protected $_html = ''; /** * @var boolean */ protected $_jsCleanComments = true; protected $_skipComments = array(); /** * "Minify" an HTML page * * @param string $html * * @param array $options * * 'cssMinifier' : (optional) callback function to process content of STYLE * elements. * * 'jsMinifier' : (optional) callback function to process content of SCRIPT * elements. Note: the type attribute is ignored. * * 'xhtml' : (optional boolean) should content be treated as XHTML1.0? If * unset, minify will sniff for an XHTML doctype. * * @return string */ public static function minify($html, $options = array()) { $min = new self($html, $options); return $min->process(); } /** * Create a minifier object * * @param string $html * * @param array $options * * 'cssMinifier' : (optional) callback function to process content of STYLE * elements. * * 'jsMinifier' : (optional) callback function to process content of SCRIPT * elements. Note: the type attribute is ignored. * * 'jsCleanComments' : (optional) whether to remove HTML comments beginning and end of script block * * 'xhtml' : (optional boolean) should content be treated as XHTML1.0? If * unset, minify will sniff for an XHTML doctype. */ public function __construct($html, $options = array()) { $this->_html = str_replace("\r\n", "\n", trim($html)); if (isset($options['xhtml'])) { $this->_isXhtml = (bool)$options['xhtml']; } if (isset($options['cssMinifier'])) { $this->_cssMinifier = $options['cssMinifier']; } if (isset($options['jsMinifier'])) { $this->_jsMinifier = $options['jsMinifier']; } if (isset($options['jsCleanComments'])) { $this->_jsCleanComments = (bool)$options['jsCleanComments']; } if (isset($options['skipComments'])) { $this->_skipComments = $options['skipComments']; } } /** * Minify the markeup given in the constructor * * @return string */ public function process() { if ($this->_isXhtml === null) { $this->_isXhtml = (false !== strpos($this->_html, '_replacementHash = 'MINIFYHTML' . md5($_SERVER['REQUEST_TIME']); $this->_placeholders = array(); // replace SCRIPTs (and minify) with placeholders $this->_html = preg_replace_callback( '/(\\s*)]*?>)([\\s\\S]*?)<\\/script>(\\s*)/i' ,array($this, '_removeScriptCB') ,$this->_html); // replace STYLEs (and minify) with placeholders $this->_html = preg_replace_callback( '/\\s*]*>)([\\s\\S]*?)<\\/style>\\s*/i' ,array($this, '_removeStyleCB') ,$this->_html); // remove HTML comments (not containing IE conditional comments). $this->_html = preg_replace_callback( '//' ,array($this, '_commentCB') ,$this->_html); // replace PREs with placeholders $this->_html = preg_replace_callback('/\\s*]*?>[\\s\\S]*?<\\/pre>)\\s*/i' ,array($this, '_removePreCB') ,$this->_html); // replace TEXTAREAs with placeholders $this->_html = preg_replace_callback( '/\\s*]*?>[\\s\\S]*?<\\/textarea>)\\s*/i' ,array($this, '_removeTextareaCB') ,$this->_html); // trim each line. // @todo take into account attribute values that span multiple lines. $this->_html = preg_replace('/^\\s+|\\s+$/m', '', $this->_html); // remove ws around block/undisplayed elements $this->_html = preg_replace('/\\s+(<\\/?(?:area|article|aside|base(?:font)?|blockquote|body' .'|canvas|caption|center|col(?:group)?|dd|dir|div|dl|dt|fieldset|figcaption|figure|footer|form' .'|frame(?:set)?|h[1-6]|head|header|hgroup|hr|html|legend|li|link|main|map|menu|meta|nav' .'|ol|opt(?:group|ion)|output|p|param|section|t(?:able|body|head|d|h||r|foot|itle)' .'|ul|video)\\b[^>]*>)/i', '$1', $this->_html); // remove ws outside of all elements $this->_html = preg_replace( '/>(\\s(?:\\s*))?([^<]+)(\\s(?:\s*))?$1$2$3<' ,$this->_html); // use newlines before 1st attribute in open tags (to limit line lengths) // $this->_html = preg_replace('/(<[a-z\\-]+)\\s+([^>]+>)/i', "$1\n$2", $this->_html); // fill placeholders $this->_html = str_replace( array_keys($this->_placeholders) ,array_values($this->_placeholders) ,$this->_html ); // issue 229: multi-pass to catch scripts that didn't get replaced in textareas $this->_html = str_replace( array_keys($this->_placeholders) ,array_values($this->_placeholders) ,$this->_html ); return $this->_html; } /** * From LSCWP 6.2: Changed the function to test for special comments that will be skipped. See: https://github.com/litespeedtech/lscache_wp/pull/622 */ protected function _commentCB($m) { // If is IE conditional comment return it. if(0 === strpos($m[1], '[') || false !== strpos($m[1], ' HTML Settings -> HTML Keep comments if(count($this->_skipComments) > 0){ foreach ($this->_skipComments as $comment) { if ($comment && strpos($m[1], $comment) !== false) { return $m[0]; } } } // Comment can be removed. return ''; } protected function _reservePlace($content) { $placeholder = '%' . $this->_replacementHash . count($this->_placeholders) . '%'; $this->_placeholders[$placeholder] = $content; return $placeholder; } protected $_isXhtml = null; protected $_replacementHash = null; protected $_placeholders = array(); protected $_cssMinifier = null; protected $_jsMinifier = null; protected function _removePreCB($m) { return $this->_reservePlace("_reservePlace("\\s*$)/', '', $css); // remove CDATA section markers $css = $this->_removeCdata($css); // minify $minifier = $this->_cssMinifier ? $this->_cssMinifier : 'trim'; $css = call_user_func($minifier, $css); return $this->_reservePlace($this->_needsCdata($css) ? "{$openStyle}/**/" : "{$openStyle}{$css}" ); } protected function _removeScriptCB($m) { $openScript = "_jsCleanComments) { $js = preg_replace('/(?:^\\s*\\s*$)/', '', $js); } // remove CDATA section markers $js = $this->_removeCdata($js); // minify /** * Added 2nd param by LiteSpeed * * @since 2.2.3 */ if ( $this->_jsMinifier ) { $js = call_user_func( $this->_jsMinifier, $js, trim( $m[ 2 ] ) ) ; } else { $js = trim( $js ) ; } return $this->_reservePlace($this->_needsCdata($js) ? "{$ws1}{$openScript}/**/{$ws2}" : "{$ws1}{$openScript}{$js}{$ws2}" ); } protected function _removeCdata($str) { return (false !== strpos($str, ''), '', $str) : $str; } protected function _needsCdata($str) { return ($this->_isXhtml && preg_match('/(?:[<&]|\\-\\-|\\]\\]>)/', $str)); } } GLOBAL GORKHA TIMES - सबै खबर एकै ठाँउमा
Breaking News

कृष्णपुरमा आपतकालीन कार्य सञ्चालन केन्द्र सुदृढीकरणका लागि सामग्री हस्तान्तरण

कञ्चनपुरः विपद् जोखिमका दृष्टिले अति संवेदनशील कृष्णपुर नगरपालिकामा आपतकालीन व्यवस्थापनलाई सुदृढ बनाउन आवश्यक सामग्रीहरू हस्तान्तरण गरिएको छ। नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्ल्युए) ले मर्सिकोर नेपालसँगको साझेदारीमा सञ्चालित जलवायु उत्थानशील समुदाय (सीआरसी) परियोजनाअन्तर्गत नगरपालिकाको स्थानीय आपतकालीन कार्य सञ्चालन केन्द्रलाई झन्डै ३ लाख ४७ हजार रुपैयाँ बराबरका सामग्रीहरू प्रदान गरिएको हो। …

Read More »

घरधुरी सर्वेक्षणका लागि भजनी र चुरे क्षेत्रका गणकहरूलाई दुई दिने अभिमुखीकरण सम्पन्न

कैलालीः पूर्वानुमानमा आधारित पूर्वकार्यलाई प्रभावकारी बनाउने उद्देश्यले भजनी नगरपालिका र चुरे गाउँपालिकाका गणकहरूलाई लक्षित गर्दै दुई दिने घरधुरी सर्वेक्षण अभिमुखीकरण कार्यक्रम सम्पन्न भएको छ। नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्लूए) र मर्सिकोर नेपालको साझेदारी तथा कोकाकोला फाउण्डेशनको आर्थिक सहयोगमा सञ्चालित ‘पूर्वानुमानमा आधारित पूर्वकार्यको सुदृढिकरण (SAAN)’ परियोजनाअन्तर्गत उक्त कार्यक्रम होटल जियान …

Read More »

मनसुन पूर्वतयारीलाई सशक्त बनाउन कञ्चनपुरमा ‘प्रभावमा आधारित मौसम पूर्वानुमान’ कार्यशाला सम्पन्न

कञ्चनपुरः यस वर्षको मनसुन अवधिमा हुन सक्ने प्राकृतिक प्रकोपबाट धनजनको क्षति न्यूनीकरण गर्ने उद्देश्यले कञ्चनपुरमा दुई दिने ‘प्रभावमा आधारित पूर्वानुमान’ सम्बन्धी कार्यशाला सम्पन्न भएको छ। यो कार्यशाला कञ्चनपुरका वेदकोट, भीमदत्त, दोधारा चाँदनी साथै डडेलधुराको पर्शुराम नगरपालिकालाई लक्षित गरी आयोजना गरिएको थियो। जसले मनसुन पूर्वतयारीमा महत्वपूर्ण भूमिका खेल्ने विश्वास गरिएको छ। …

Read More »

ग्लोवल वार्मिङले पग्लायो लाङटाङ, हिमरेखा सरेपछि पर्यटक घटे

न्यूज एजेन्सी नेपाल, 12 जुन 2025 /  आजभन्दा २० वर्षअघि हिमाली जिल्ला रसुवाको लाङटाङ क्षेत्रका घरका छानाहरु प्रायजसो हिउँले ढपक्क ढाकेको हुन्थ्यो । घरछेउमा कञ्चन हिमनदी बग्थ्यो । युवाहरु बिहान उठ्ने बित्तिकै घरको आँगनमा रहेका हिउँका मोतीजस्तै टल्किने कणहरुसँग खेल्दै सफा गर्न लाग्थे । तर अब यो अनुभव एकदेशको कथा …

Read More »

The Best Bitcoin Online Casinos that Approve Bitcoins

Bitcoin has revolutionized the globe of on the internet betting, supplying gamers a protected, anonymous, and practical means to appreciate their favorite casino site games. With the rise in popularity of cryptocurrencies, increasingly more on-line casinos are currently accepting Bitcoin as a form of settlement. In this write-up, we will …

Read More »

Best Neteller Gambling Enterprises Online: A Comprehensive Overview

Welcome to our extensive overview on the very best Neteller online casinos online. Neteller is a popular e-wallet service that permits individuals to make safe and secure online deals, including deposits and withdrawals at on the internet casinos. In this write-up, we will explore the world of Neteller online casinos …

Read More »

चौधर जलाधारमा जलवायु जोखिम न्यूनीकरणको दिशामा स्थानीय पूर्वकार्य प्रणालीको ऐतिहासिक सुरूवात

कञ्चनपुरः जलवायु परिवर्तनको बढ्दो चुनौतीहरूसँग जुध्न र स्थानीय समुदायलाई थप सुरक्षित एवम् सक्षम बनाउन कञ्चनपुरको बेदकोट नगरपालिकामा एक ऐतिहासिक कार्यक्रमको शुभारम्भ भएको छ। नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्ल्यूए), डीसीए र इन्स्टिट्यूट अफ हिमालयन रिस्क रिडक्सन (आईएचआरआर) लगायता संस्थाहरूको आयोजना तथा नगरपालिकाको समन्वयमा “चौधर जलाधारमा जलवायु उत्थानशीलताका लागि स्थानीय अनुगमन, …

Read More »

बेदकोट र बेलडाँडीका तटीय बस्ती बाढीको जोखिममा, विपद् जोखिम न्यूनीकरणका लागि अध्ययन सुरू

कञ्चनपुरः कञ्चनपुरको बेदकोट नगरपालिका–४ मा पर्ने पार्की सार्की टोलका बासिन्दा वर्षेनि बाढी र नदी कटानको उच्च जोखिममा जीवनयापन गर्न बाध्य छन्। चौधरसहित पाँचवटा खोला मिसिने स्थानमा अवस्थित यो बस्ती बाढी तथा कटानको नियमित चपेटामा पर्दै आएको छ। सो क्षेत्रका समुदायहरू प्रत्यक्ष रूपमा जोखिममा परेका छन्। जलवायु परिवर्तनको असर र नदीजन्य …

Read More »

विपद्को उच्च जोखिममा रहेको चुरे गाउँपालिकामा स्थानीय आपतकालिन कार्य सञ्चालन केन्द्र स्थापनाका लागि सामग्री सहयोग

कैलालीः विपद् जोखिमको दृष्टिले उच्च संवेदनशील मानिएको चुरे गाउँपालिकामा पहिलो पटक स्थानीय आपतकालिन कार्य सञ्चालन केन्द्र स्थापना हुने भएको छ। नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्ल्यूए) र मर्सिकोर नेपालको साँझेदारी तथा कोकाकोला फाउण्डेशनको आर्थिक सहयोगमा सञ्चालित “पूर्वानुमानमा आधारित पूर्वकार्यको सुदृढिकरण (SAAN)” परियोजनाअन्तर्गत स्थानीय आपतकालिन कार्य सञ्चालन केन्द्र स्थापना तथा कार्य …

Read More »

एन.एन.एस.डब्ल्यू.ए.-द्वारा सामुदायिक प्रतिकार्य टोली लक्षित पाँच दिने विपद् व्यवस्थापन सम्बन्धी तालिम सुरू

कैलालीः कैलालीको चुरे गाउँपालिकामा सामुदायिक प्रतिकार्य टोलीलाई लक्षित गरि पाँच दिने विपद् व्यवस्थापन सम्बन्धी तालिम सुरू भएको छ। विपद् जोखिम न्यूनीकरण र पूर्वतयारीका लागि समुदायलाई सशक्तिकरण गर्नका चुरे गाउँपालिका वडा नम्बर १ र ५ का सामुदायिक प्रतिकार्य टोलीका प्रतिनिधिहरूलाई लक्षित गर्दै पाँच दिने सामुदायिक विपद् प्रतिकार्य तालिम सुरू भएको हो। …

Read More »