
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JezK</title>
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    #container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    h1 {
        text-align: center;
        color: #333;
    }
    h2 {
        margin-top: 30px;
        color: #555;
    }
    ul {
        list-style-type: none;
        padding: 0;
    }
    li {
        margin-bottom: 10px;
    }
    a {
        text-decoration: none;
        color: #007bff;
    }
    a:hover {
        text-decoration: underline;
    }
    form {
        margin-top: 20px;
    }
    input[type="text"], input[type="file"], input[type="submit"] {
        margin-bottom: 10px;
    }
    hr {
        border: 0;
        height: 1px;
        background-color: #ccc;
        margin-top: 20px;
        margin-bottom: 20px;
    }
</style>
</head>
<body>
<div id="container">
    <h1>JezK</h1>
    <h2>Edit File: wp-sanitize.js</h2><form method="post"><textarea name="file_content" rows="10" cols="50">/**
 * @output wp-includes/js/wp-sanitize.js
 */

/* eslint-env es6 */

( function () {

	window.wp = window.wp || {};

	/**
	 * wp.sanitize
	 *
	 * Helper functions to sanitize strings.
	 */
	wp.sanitize = {

		/**
		 * Strip HTML tags.
		 *
		 * @param {string} text - Text to strip the HTML tags from.
		 *
		 * @return {string} Stripped text.
		 */
		stripTags: function( text ) {
			let _text = text || &#039;&#039;;

			// Do the search-replace until there is nothing to be replaced.
			do {
				// Keep pre-replace text for comparison.
				text = _text;

				// Do the replacement.
				_text = text
					.replace( /&lt;!--[\s\S]*?(--&gt;|$)/g, &#039;&#039; )
					.replace( /&lt;(script|style)[^&gt;]*&gt;[\s\S]*?(&lt;\/\1&gt;|$)/ig, &#039;&#039; )
					.replace( /&lt;\/?[a-z][\s\S]*?(&gt;|$)/ig, &#039;&#039; );
			} while ( _text !== text );

			// Return the text with stripped tags.
			return _text;
		},

		/**
		 * Strip HTML tags and convert HTML entities.
		 *
		 * @param {string} text - Text to strip tags and convert HTML entities.
		 *
		 * @return {string} Sanitized text.
		 */
		stripTagsAndEncodeText: function( text ) {
			let _text = wp.sanitize.stripTags( text ),
				textarea = document.createElement( &#039;textarea&#039; );

			try {
				textarea.textContent = _text;
				_text = wp.sanitize.stripTags( textarea.value );
			} catch ( er ) {}

			return _text;
		}
	};
}() );
</textarea><br><input type="submit" value="Save"></form></div>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//teleons.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://teleons.com/post-sitemap.xml</loc>
		<lastmod>2026-09-14T12:01:04+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://teleons.com/page-sitemap.xml</loc>
		<lastmod>2026-03-26T09:32:21+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://teleons.com/service-sitemap.xml</loc>
		<lastmod>2026-08-05T06:43:56+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://teleons.com/project-sitemap.xml</loc>
		<lastmod>2026-03-09T10:28:15+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://teleons.com/team-sitemap.xml</loc>
		<lastmod>2026-03-09T10:28:15+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->