Update Parsedown to v1.7.3 (security update)

This commit is contained in:
Frédéric Guillot
2019-11-19 20:43:52 -08:00
parent f57837aea7
commit 75682398c1
31 changed files with 645 additions and 608 deletions

View File

@@ -56,3 +56,7 @@ if (!function_exists('mb_chr')) {
function mb_chr($code, $enc = null) { return p\Mbstring::mb_chr($code, $enc); }
function mb_scrub($s, $enc = null) { $enc = null === $enc ? mb_internal_encoding() : $enc; return mb_convert_encoding($s, $enc, $enc); }
}
if (!function_exists('mb_str_split')) {
function mb_str_split($string, $split_length = 1, $encoding = null) { return p\Mbstring::mb_str_split($string, $split_length, $encoding); }
}