/** * 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 - Page 256 of 270 - सबै खबर एकै ठाँउमा
Breaking News

40 Super Hot Slot Free

40 Super Hot Slot Free 40 super hot slot free when visiting this Casino I was not sure what to expect when I first arrived in terms of dining, 2023. This game can be addictive so please play only if you can spare the time for it, they act as …

Read More »

ट्रकमा भेटिएको २५ करोडको मालिक पहिचान

काठमाण्डौ, 2 अप्रिल 2025 राजश्व अनुसन्धान विभागले चीनतर्फ निकासी हुन लागेका २५ करोड रुपैयाँ बराबरको विदेशी मुद्राको वास्तविक मालिक पत्ता लगाएको छ । २५ करोड रुपैयाँ बराबरको अवैध विदेशी मुद्रा (अमेरिकी डलर र युरो) मालिक पहिचान भएको हो । विभागका अनुसार उक्त रकम सिन्धुपाल्चोकको भोटेकोसी गाउँपालिका–४ स्थायी घर भइ हाल टोखा …

Read More »

उत्थानशील युवा सञ्जालद्वारा जङ्गली जनावरको आतङ्कबाट सुरक्षित रहन सर्चलाईट वितरण

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

Read More »

कुलमान घिसिङलाई पदबाट हटाएकोमा एकता मञ्च असन्तुष्ट, भन्यो निर्णयले चिन्तित छौं

नयाँ दिल्ली, 25 मार्च 2025 नेपाल विद्युत प्राधिकरणका कार्यकारी निर्देशक कुलमान घिसिङलाई सरकारले पदमुक्त गरेकोमा नेकपा माओवादी केन्द्रको भारतस्थित जनवर्गीय संगठन अखिल भारत नेपाली एकता मंचले विरोध गरेको गरेको छ । मंगलबार एक प्रेस विज्ञप्ति जारी गर्दै एकता मंचले नेपालमा रहेको चरम लोडसेडिङको अन्त्य गर्दै देशलाई उज्यालो बनाउन अहम भूमिका …

Read More »

सुदूरपश्चिम प्रदेशका गेज रिडर तथा मौसम अवलोकनकर्तालाई पूर्वसूचना क्षमता अभिवृद्धि तालिम

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

Read More »

‘विपद् पूर्वानुमानमा आधारित प्रतिकार्य’ सम्बन्धी क्षमता अभिवृद्धिमा एनएनएसडब्ल्यूएको सक्रियता

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

Read More »

११५ औँ अन्तर्राष्ट्रिय नारी दिवसका अवसरमा उत्थानशील युवा सञ्जालद्वारा सचेतनामूलक नाटक प्रदर्शन

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

Read More »

भारतीय वायुसेनाको लडाकु विमान दुर्घटना, पाइलट हाम फालेर सुरक्षित बचे

अम्बाला, 7 मार्च 2025 भारतीय वायु सेना (आईएएफ) को एक जगुआर लडाकु विमान शुक्रबार उत्तरी भारतीय राज्य हरियाणामा नियमित प्रशिक्षण उडानको क्रममा दुर्घटनाग्रस्त भएको प्रहरीले जनाएको छ । हरियाणाको राजधानी चण्डीगढबाट करिब ३५ किलोमिटर दक्षिण पूर्वमा रहेको पञ्चकुला जिल्लाको रायपुर रानी नजिकैको पहाडी जङ्गल क्षेत्रमा दुर्घटना हुनुअघि पाइलट सुरक्षितरूपमा बाहिर निस्किएका …

Read More »

17 वर्षीय बालिकाको बलात्कार एंव हत्या प्रकरणका अभियुक्तहरु सार्वजनिक

सिरहा, 7 मार्च 2025 सिरहाको नवराजपुर गाउँपालिका–१ भगवतिपुरकी १७ वर्षीया रिंकुकुमारी सदाको सामूहिक बलात्कार तथा शंकास्पद मृत्यु घटनामा पक्राउ परेका अभियुक्तहरूलाई प्रहरीले शुक्रवार सार्वजनिक गरेको छ। जिल्ला प्रहरी कार्यालयले पत्रकार सम्मेलन गरेर उनीहरूलाई सार्वजनिक गरेको हो। प्रहरीका अनुसार हालसम्म आठजना पक्राउ परेका छन् भने चारजना फरार छन्। पक्राउ पर्नेहरूमा बलात्कारका मुख्य आरोपित …

Read More »

गड्डाचौकी क्षेत्रमा सरसफाई तथा रङ्गरोगन कार्यक्रम सम्पन्न, टोल फ्री नम्बर ११५५ र ११४९ प्रवर्धन

कञ्चनपुरः कञ्चनपुरस्थित पश्चिमी सीमानाका गड्डाचौकीको सीमा स्तम्भ क्षेत्रमा सरसफाई तथा रङ्गरोगन साथै टोल फ्री नम्बर ११५५ र ११४९ प्रवर्धन गरिएको छ। सोमबार भीमदत्त नगरपालिका वडा नम्बर ११ कार्यालय, नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्ल्यूए), डीसीए, भीमदत्त नगरपालिका स्तरीय उत्थानशील युवा सञ्जाल, नेपाल प्रहरी र सशस्त्र प्रहरी बलको समन्वयमा गड्डाचौकीस्थित ७ …

Read More »