/home/techb158/immovalet.com/vendor/league/commonmark/src/Util
NameSizeModeActions
ArrayCollection.php84570644editdlrm
Configuration.php31170644editdlrm
ConfigurationAwareInterface.php5680644editdlrm
ConfigurationInterface.php15030644editdlrm
Html5Entities.php1087900644editdlrm
Html5EntityDecoder.php16330644editdlrm
LinkParserHelper.php33910644editdlrm
PrioritizedList.php15580644editdlrm
RegexHelper.php98760644editdlrm
UrlEncoder.php24980644editdlrm
Xml.php7130644editdlrm
Edit: /home/techb158/immovalet.com/vendor/league/commonmark/src/Util/Xml.php (713B)
* * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; /** * Utility class for handling/generating XML and HTML */ final class Xml { /** * @param string $string * * @return string */ public static function escape($string) { return \str_replace(['&', '<', '>', '"'], ['&', '<', '>', '"'], $string); } }